Setting value of Checkbox Field Group
It's been a while since I've had to do any Javascript in a PDF, and I'm feeling a little bit too rusty. I need to set a value of a group of checkbox fields.
The fields are named 'Base.Category.Subcategory.xxxxx'. The following doesn't work the way I need it:
var oFld = this.getField('Base.Category')
oFld.value = 'Off'
I can set the visibility for all of the checkboxes in a specific category or subcategory, but how do I set the value for all of the checkboxes? I'd rather not hard-code this for each combination.
