These forums are now Read Only. If you have an Acrobat question, ask questions and get help from one of our experts.

Check Box Vs Radio Button

rajdeepsokhi
Registered: May 7 2007
Posts: 16

Hi,
Is it possible to use check boxes in single choice questions? The user can either select YES or NO but not both.
Raj

DanB
Registered: May 8 2007
Posts: 34
Yes it is. You have to add a script something like this noting that "this" is the one check box and altAddno is the other in the pair:

if (this.rawValue == "1") {
this.parent.altAddNo.rawValue = "0"
}


if (this.rawValue == "0") {
this.parent.altAddNo.rawValue = "1"
}


Dan
www.it-prints.com
Meabh
Registered: Feb 24 2006
Posts: 20
Or use check boxes with the same name but different export value

Meabh
klmnt
Registered: Apr 25 2007
Posts: 7
…Or simply open the radio buttons properties – Options –Button style --> Check . And your radio buttons appear as checkboxes.
rajdeepsokhi
Registered: May 7 2007
Posts: 16
Thanks all!!