Rank: Advanced Member Groups: Member
Joined: 12/5/2007 Posts: 57
|
Though I have set the SaveStateCrossPages to true on my treeview control located on my master page it does not save the state. So for this reason and others I am using your callback panel with a number of triggers. For both my treeview control as well as one of your slidemenu controls I need to determine the ID of the navigation item that fired the event.
I have created the following javascript function in the page:
<script type="text/javascript"> function getNavItemId() { var navIemEventInfo = eo_GetNavigatorEventInfo(); var navItem = navIemEventInfo.getItem(); return navItem.getItemId(); } </script>
How can I form the Paramete tag to use the value of this function for the parameter value? Or, is there another way of accomplishing this.
Thanks
Gary
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
I am not exactly sure if I understand your question correctly. If you wish to pass parameter through a CallbackPanel, you cannot use triggers. You must call eo_Callback explicitly and pass your parameter through the second argument.
Thanks!
|