Hi all-
I have a form that has two pull-down menus, where the second one is dynamically generated based on the selection in the first one. Before the selection of a item from the first list, the second one is empty, but then is generated on the fly with javascript once the user selects a choice in the first list.
Consequently, if you submit the form then click the back button, the first list remembers its previous location (from cache), but the second one can't go back to its old position because I first have to manually rebuild the list using the javascript function that I used to generate it in the first place. I'd really like to be able to set it back to its old position, even if I have to do so manually. So, I figure the var should still be in cache somewhere, since the first list must have retreived its previous location from cache too. I'd rather not use sessions, either, because that seems like overkill and would overrule caching anyway, so I'd have to go and implement that for all the other fields. Any idea how to extract vars from cache or see a list of all the cached values or something that would help with this issue?
Any help would be very much appreciated, and sorry if this was dealt with in another thread.
Cheers,
Jon