AgileApps Support Wiki Pre Release

Change Checkbox Value Script

From AgileApps Support Wiki
Revision as of 22:27, 21 May 2014 by imported>Aeric

Change the value of a checkbox field to true when the request amount is large enough.

<syntaxhighlight lang="javascript" enclose="div">

if(_sdForm.request_amount.value > 10000) {

   setCheckboxState(_sdForm, "approval_required", true);

} </syntaxhighlight>