I have a static PDF registration form that I am working on using LiveCycle Designer 8.2. I would like to learn how to have a radiobutton list reset when a particular check box is unchecked.
When registering for the event, users have the option of attending 1 of the 4 optional afternoon workshop sessions. I have successfully made the workshop radiobuttons hidden until the check box is checked using the following code:
(check box is named "Reg4" -- this is where they say "yes" I'm going to attend 1 of the 4 workshops,
radiobutton list of the 4 workshops is named "RadioButtonList3")
topmostSubform.Page1.Reg4::change - (JavaScript, client)
if (this.rawValue == "0") {
this.resolveNode("RadioButtonList3").presence = "hidden";
When the user unchecks the "Reg4" checkbox after they have selected 1 of the 4 workshops, that radiobutton is still checked.
What I'm looking for is to have the radiobutton list reset (or again hidden) when the Reg4 button is unchecked (after previously being checked).
I hope my description is clear. Is this possible?