I'm having a little problem with the state saving in dhtml menu expand.
Return to Recent Questions
Q:
I'm testing the trial version and I'm having a little problem with the state saving.
Everytime it navigates to another page, it does not save the
state, even with
var tsaveState=1;
In fact, it actually opens up a different menu other than the one I originally clicked.
A:
See, if you open pages (with menus) from different folder it
means that you open different menus. So, when you change a state, for
example, of the first menu within "newzap/" folder and then open
another page with the menu within "newzap/learn/", browsers looks for another
cookie file and can't find it and the second menu stays in a default
state.
Try to set different
var tsavePrefix="menu1";
var tsavePrefix="menu2";
var tsavePrefix="menu3";
for different menus.
That should work.
Return to Recent Questions
|