I have searched the forum and have been unable to find an answer to this probably simple question.
I am trying to fix a problem in a database that was designed by someone else. When you view the form on the web there is a submit button, but not in the client, nor if I copy the form to another database. I can’t find the button anywhere in the form - where could the button be?
Subject: Can’t Find Button
The Submit button could be HTML / javascript programming if the form uses ‘Render Pass thru HTML’ and was originally programmed specifically for the web
Subject: Can’t Find Button
This is a possibility:
If you don’t check the Database Property “Use Javascript when generating pages” you get the following consequences:
Buttons: Domino automatically generates a Submit button, at the bottom of the form.
If there is already one or more buttons on the form, Domino converts the first button it recognizes to a Submit button automatically and ignores all other buttons on the form.
You can have only one button, a Submit button, on a form.
If you do check that option, then you get:
Buttons: Domino doesn’t generate a Submit button automatically.
To allow users to save and close a form on the Web, you must create a button, hotspot, or action that contains these commands:
@Command([FileSave]);
@Command([CloseWindow])
You can have multiple buttons on a form.
Check the developer help file under “Submit” for more details.
Stephen Lister