Answered
Check box based on value of another field
I have a checkbox that I want checked when the value is equal greater than 2500 and unchecked when below. Trying to run a validation script but I can't figure out why this isn't working.
if (event.value >= 2500)
{
this.getField("PriceBox").value != "Off"
} else {
this.getField("PriceBox").value == "Off"
}
