hcl-bot
February 15, 2005, 9:47pm
1
Hi Guys,
Got a problem once more.
I am developing an application that used by both client and internet users.
I want to put a ‘friendly reminder’ pop-up box everytime my user opens a document.
I have accomplish this in the client side by using the ‘post open’ event and putting a messagebox function in lotus script.
Anyone have idea on how i can do this on web side?
hcl-bot
February 16, 2005, 3:34am
2
Subject: equivalent of document postopen event in internet apps
You can use the onLoad event of the Form.Don’t use the postopen event if the same has to work in client and browser.
The onLoad event works for the client as for the Browser so only one time programming is necessary.
Good luck,
Wim
hcl-bot
February 17, 2005, 9:25pm
3
Subject: RE: equivalent of document postopen event in internet apps
got it!
Thanks guys
hcl-bot
February 15, 2005, 10:01pm
4
Subject: RE: equivalent of document postopen event in internet apps
For Domino web apps, the “client” is the web browser. Therefore, you have to use a language that the web browser knows – not LotusScript. You could write an “onload” event in JavaScript.