cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Check the check-box using script

Former Member
0 Likes
205

Hi

I have a requirement where from script i need to check the check box.

Based on if a condition is true , when i execute the script , the check box field needs to be auto-checked .

Appreciate the help

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Likes

Hi,

Access the field and set it to true. If it is a standard field it should have its getter and setter, you should use that. In case of an extension field do this :


doc.getExtensionField("FIELD_NAME").set(true);

Thanks

Devesh

Answers (0)