Navbar Fixed for Multiple Pages
Hi ,
Please follow these steps:
1 Select the panel in the design mode and copy panel name in the properties.
2 Select the goal list item in the list.
3 Open bottom "Events" panel.
4 Add click "javascript" event handler and fill it with code below:
pre
code
//Note "panel_10" should be replaced by the panel name from the 1st step.
Appery("panel_10").panel("open");
//For close panel you should use this code:
//Appery("panel_10").panel("close");
That's all. After you click on the certain list item, application will open the panel.
/code
/pre