Hello,<br><br>In my project i need to set some value in javascripe of menupage of layout package.and i need to get this value in all other packages.<br><br><br>layout/menu.html<br><br><a class="menu1" onclick="showHide('mymenu',1)"><div id="mastercontrolLabel" class="mainmenustyle"></div></a><br>
<br>//javascript<br><br>function showHide(theidPrefix,theidNum){<br>document.getElementById('menuhidden').value=theidNum;<br>alert(document.getElementById('menuhidden').value) <span style="background-color: rgb(255, 153, 102);"> //Here i got the value as 1;</span><br>
................<br>...............<br>..................<br>}<br><br>i would like to get the value of menuhidden variable in EmployeemasterListPage.java<br><br>employeemaster/employeemasterList.html<br><br><html><br>
<br>............<br>..............<br>..............<br><br></html><br><br>public class EmployeemasterListPage {<br><br>public int menuhidden;<br><br>public Class prerender(){<br>System.out.println("#########################"+menuhidden); <span style="background-color: rgb(255, 153, 102);">//Here i got the value as 0</span><br>
}<br>}<br><br>Is this coding correct?Please advice to solve this problem.<br><br>Thanks in advance<br>トマス<br>