Notifications
Clear all
Topic starter
how do i make a button grey out or disable after one click?
Posted : June 13, 2012 2:46 am
On the "Advanced" tab of the button configuration, at the bottom there is an "Enable/disable" expression field. Use that. If the statement evaluates to "true" then the button will be enabled, if "false" the button will be disabled an appear dim on the form.
so, the expression could be as simple as: document.xyz == ""
So as long as nothing is in that variable the button can be clicked. If the button is set to push something into that variable, then after clicking it the variable will have data and the button would be disabled.
Posted : June 13, 2012 3:23 am
Topic starter
thank you
got it
Posted : June 13, 2012 3:35 am