Notifications
Clear all
Topic starter
I am wondering if there is a way for a check box selection to be already checked when our users open the form.
Thanks!!
Posted : January 3, 2013 12:17 am
{!DOCUMENT.checkbox = "value of checkbox"}
this will execute every time the form is loaded. CAVIAT...if the user clears the checkbox, puts the update on hold, and reopens the update, the checkbox will be set again.
To solve this: create a hidden DOCUMENT.checkbox, set it when you set the visible checkbox, and check it when setting the visible checkbox...
{!if DOCUMENT.hiddencheckbox =="" then
DOCUMENT.checkbox = "value of checkbox"
DOCUMENT hiddencheckbox = "value of hiddencheckbox"
endif}
Posted : January 3, 2013 12:26 am