I was required to code for validation of fields using Common Javascript in a form on Lotus platform. My form has a multi-tab-style table. My code can work very well in Notes. But when I ran it in IE, the problem came out. In order to get an effect of multi-tab-style on a web page, my table was automatically divided into several pages, every tab is in different page.
Obviously, my Javascript was not gonna work since Javascript's scope is page, or say, I couldn't access the fields in another tab( page) using Javascript.
This problem is easy to solve in a web applications, just use session to store the values of all fields and validate them before submission.
But in Domino, since conversion from Notes to Html is done automatically, I can't touch it at all.
Any solution and advice?
P.S. I tried to let my validation code executed when a user changes between tabs, but I couldn't find the corresponding event for those actions.
Obviously, my Javascript was not gonna work since Javascript's scope is page, or say, I couldn't access the fields in another tab( page) using Javascript.
This problem is easy to solve in a web applications, just use session to store the values of all fields and validate them before submission.
But in Domino, since conversion from Notes to Html is done automatically, I can't touch it at all.
Any solution and advice?
P.S. I tried to let my validation code executed when a user changes between tabs, but I couldn't find the corresponding event for those actions.