Check Box Actions
thanks in advance help. trying set actions on check box, if check box group of fields hidden , if uncheck same check box hidden fields shown. insight or advice offer appreciated.
you can use mouseup event of box:
var fields = ["field1", "field2", "field3"]; // replace actual field names
for (var in fields) {
this.getfield(fields[i]).display = (event.target.value=="off") ? display.visible : display.hidden;
}
More discussions in PDF Forms
adobe
Comments
Post a Comment