Change Checkbox Value Script

From AgileApps Support Wiki
Revision as of 23:16, 28 June 2013 by imported>Aeric

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

if(_sdForm.request_amount.value > 10000)
{
     _sdForm.approval_required.checked = true;
}