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>&lt;a class=&quot;menu1&quot; onclick=&quot;showHide(&#39;mymenu&#39;,1)&quot;&gt;&lt;div id=&quot;mastercontrolLabel&quot; class=&quot;mainmenustyle&quot;&gt;&lt;/div&gt;&lt;/a&gt;<br>
<br>//javascript<br><br>function showHide(theidPrefix,theidNum){<br>document.getElementById(&#39;menuhidden&#39;).value=theidNum;<br>alert(document.getElementById(&#39;menuhidden&#39;).value)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<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>&lt;html&gt;<br>
<br>............<br>..............<br>..............<br><br>&lt;/html&gt;<br><br>public class EmployeemasterListPage {<br><br>public int menuhidden;<br><br>public Class prerender(){<br>System.out.println(&quot;#########################&quot;+menuhidden);&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <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>