How do I use a drop-down box to turn on a radio button?
i have dynamic form drop-down box containing selections 1, 2, 3, , 4; later in form have radio button group 2 radio buttons labeled "pass" , "fail".
i have drop-down selections 1 , 2 automatically select "fail" , 3 , 4 automatically select "pass" in radio button group, option of user changing warning message.
any appreciated.
thx
drew
hi,
you can use javascript in change event of drop down list.
var sel = xfa.event.newtext; radiobuttongroup.rawvalue = (sel === "1" || sel === "2") ? 1 : 2;
More discussions in LiveCycle Forms
adobe
Comments
Post a Comment