This is a long shot, But is there away to store data on page,
such that when I exit that page, and later re-enter that page those data is the same as it was when I left page?
I do not want to store it on session, as I want this page to be independent on the same session.
That typically the job of either tags or a database. What are you really trying to do? And how would you determine if previously captured data should be shown?
I have the above that drives query history.
I can store this data on session. But every tab on my browser will show the same date (I don't want that).
Storing to tag is not an option, database too complicated as I need a unique key for this.
I was thinking of storing this to "Dock" View, since that view is always present.
I also was thinking if the browser, has a data store where I can store page scope data..
Ah, sounds like you need my Integration Toolkit's pageVarMap()
function.