I have a form with a button that does a complex set of @Formula language commands ending with a refresh. I would like to be able to control the execution of the button formulas based on the users interaction.
Can I pass from a Web page based on an event (like onBlur()) to the notes environment to execute a portion of the button’s code?
The button code may say @If(xxx=‘yes’;@Do(a,b,c);@Do(x,y,z))
Where xxx get set from the onBlur() event on the form…
Subject: RE: Javascript - Selective Button code.
It sounds like you want to use messageboxes and the like on the web.
The Domino server is running on a different computer than the user viewing your web page. What do you expect the server to do? It can’t force the browser to suddenly be able to execute Lotus macro language.
You have to code your user interface using JavaScript or Java, or else pop up new browser windows that go back to the server to get their contents.