Skip to main content
Inspiring
February 7, 2018
Question

Checkbox checked, other checkboxes become both checked & disabled

  • February 7, 2018
  • 3 replies
  • 777 views

Hi,

I have three checkboxes in my form named checkbox1, checkbox2 and checkbox3.

I wish the following to happen:

If checkbox1 is checked, then:

• checkbox2 and checkbox3 also becomes checked

• but at the same time checkbox 2 and checkbox3 also become disabled (by disabled

I mean not checkable, not clickable).

I have this script that does half the job, it disables checkbox 2 and checkbox3 when checkbox1 is checked:

// set readonly property based on the value of this field compared to "Off";

this.getField("checkbox2").readonly = (event.target.value != "Off");

this.getField("checkbox3").readonly = (event.target.value != "Off");

Though, as described above, I want checkbox2 and checkbox3 to become both checked and disabled at the same time.

How would this script look like?

Thanks for your help!

Greatings,

Dennis (Javascript beginner)

This topic has been closed for replies.

3 replies

Inspiring
February 8, 2018

Thanks try67 for helping me out.

Thom just helped me realize what I was doing wrong on the other thread.

Thom Parker
Community Expert
Community Expert
February 7, 2018

You already have the code for this. On the other thread.

Thom Parker - Software Developer at PDFScriptingUse the Acrobat JavaScript Reference early and often
try67
Community Expert
Community Expert
February 7, 2018

When checkbox1 is unchecked, should they also be automatically unchecked?

Inspiring
February 7, 2018

Yes that is correct.

When checkbox1 is unchecked, they should automatically become unchecked.

try67
Community Expert
Community Expert
February 7, 2018

Then use this code:

this.getField("checkbox2").tickThisBox(0, (event.target.value != "Off"));

this.getField("checkbox3").tickThisBox(0, (event.target.value != "Off"));