Hi,
I need your help with the following scenario:
I have an applications with tabs and I need that each tab will be cleared after a user goes to another tab and then returns to the same tab.
For example: a user goes to tab 3, filters the data and then moves to tab 5. I want the when he moves back to tab 3 the tab will return to its initial state.
In order to achieve this I used the bookmarks:
1. I added the following script in the event On Startup of the application:
g_bookmarkID = Bookmark.saveBookmark(); (g_bookmarkID is declared as a global variable of the application)
2. In the On select event of the tab strip I added the script:
Bookmark.loadBookmark(g_bookmarkID);
Everything is working fine when the application is running, but get an error message:
Bookmark "AS9dsM.Ch8REsPme.fhbSeY" does not exist and therefore cannot be loaded
when the mentioned bookmark is not the one that was created in event On Startup.
Also, in the error log this message appears as a warning and not as an error.
Any ideas?
Regards,
Hagit