Answered
Hi,
is there a chance to activate 15 Checkup-Boxes with one click on "one" button?
(with a javascript??)
Kind Regards
Holger Hedrich
Hi,
is there a chance to activate 15 Checkup-Boxes with one click on "one" button?
(with a javascript??)
Kind Regards
Holger Hedrich
getField("Check1").value = "Yes";
for (var i = 1; i < 16; i+= 1) {getField("Check" + i).value = "Yes";}
George