My form has a checkbox, with a single choice, I would like to deselect this choice programmatically.
I have tried the following with no success:
LFForm.setFieldValues({fieldId: 10}, false);
LFForm.setFieldValues({fieldId: 10}, {value: "false"}); //I know there isn't a choice with the value "false" but I still tried!
Where the checkbox has:
Field ID = 10
Label = "Refresh"
Value = "V_true" (I set it manually to "true" it reset it to "V_true")
If anyone could point me in the right direction I would be very grateful, thank you :)