Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

LoriLM
LoriLM
Offline

Badges

Badges
6

Accepted Solutions

Accepted Solutions
1

Likes Received

Likes Received
0

Posts & Comments

Posts & Comments
10

Discussions

Discussions
0

Questions

Questions
2

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by LoriLM
Customize the badges you want to showcase on your profile
Re: Reset radiobutton list when check box unchecked - Adobe LiveCycle 29-05-2013
Thanks for all of your help, Jono. I appreciate all of the time you spent helping me out.

Views

279

Likes

0

Replies

0
Re: Reset radiobutton list when check box unchecked - Adobe LiveCycle 10-05-2013
Thank you again, Jono, for your reply. I was worried that the Static PDF was the trouble but I just couldn't take no for an answer!If you're willing, I'd be happy to send you my file but am unable to post publicly.In an earlier version the RadioButtonList3 is hidden when first viewing the file. It was done using FormCalc. (I know you said don't mix the languages but, hey, it worked!) Also, I found a post you had last year in the discussion "Prompt User to click checkbox (radio button)" where you...

Views

280

Likes

0

Replies

0
Re: Reset radiobutton list when check box unchecked - Adobe LiveCycle 09-05-2013
Makes sense that anything you turn on/off, you must also turn off/on.There is no script on RadioButtonList3.The off value in Reg4 Binding is set to 0.I did a copy/paste of your suggestion above so I didn't make any typos.When I change the radiobutton field presence to hidden, they don't show up when I click Reg4.Unfortunately, the radiobuttons do not hide but do reset when unclicking Reg4.Also it doesn't tell me that the radiobuttonlist cannot be blank which I thought that's what the "mandatory=...

Views

280

Likes

0

Replies

0
Re: Reset radiobutton list when check box unchecked - Adobe LiveCycle 08-05-2013
I like your suggestion of combining the scripts (much cleaner document) but now I'm moving further away from the goal.When I run this, the radiobuttons are available when I first preview but then are hidden when I select the Reg4 checkbox. Also, the message no longer shows up (not a biggie but not sure why it went away).When I read this in layman's terms, to me it says if Reg4 is checked then radiobuttons are visible, open for input & error message is mandatory. Otherwise, radios are blank, the ...

Views

279

Likes

0

Replies

0
Re: Reset radiobutton list when check box unchecked - Adobe LiveCycle 08-05-2013
Thanks, Jono. This is so close!It didn't work when I changed the code to match your above suggestion but it did when I added the rawValue line to the Reg4 code: topmostSubform.Page1.Reg4::change - (JavaScript, client)if (this.rawValue == 1) { RadioButtonList3.presence = "visible";}else { RadioButtonList3.rawValue = "" RadioButtonList3.presence = "hidden";}Now, when the user unchecks the Reg4 checkbox the radiobuttons reset but are no longer hidden. This means they can select one and that cannot ...

Views

281

Likes

0

Replies

0
Re: Reset radiobutton list when check box unchecked - Adobe LiveCycle 08-05-2013
Just saw that I was the one that added the error message Here's the code: topmostSubform.Page1.RadioButtonList3::calculate - (FormCalc, client)if (Reg4 == "0") then RadioButtonList3.access = "readOnly" RadioButtonList3.mandatory = "disabled"else RadioButtonList3.access = "open" RadioButtonList3.mandatory = "error"endifI welcome all ideas on getting this list to hide/reset. Thanks!!

Views

281

Likes

0

Replies

0
Re: Reset radiobutton list when check box unchecked - Adobe LiveCycle 08-05-2013
Thanks for the reply, Jono.What I like about your code is that it brings up a message when the user clicks the Reg4 check box "RadioButtonList3 cannot be left blank."But, if the user 1) checks the Reg4 check box; then 2) selects one of the radio buttons; then 3) unchecks the Reg4 check box, the radiobutton is still selected. What I'm looking for is after the check box is checked and then unchecked, the radiobutton list is cleared or hidden.Does this sound doable?

Views

281

Likes

0

Replies

0
Reset radiobutton list when check box unchecked - Adobe LiveCycle 08-05-2013
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 ...

Views

4.8K

Likes

0

Replies

13
Re: Discounting total amount due numeric field - Adobe LiveCycle 30-04-2013
TundraSteve, Thanks for the reply. Your suggestion got me on the right path. Here's what worked using FormCalc on the TotalDue field:if (SpecReg + WorkshopReg == 890) then SpecRegelse sum (EarlyReg, StandardReg, SpecReg, WorkshopReg)endifThanks again!

Views

131

Likes

0

Replies

0
Discounting total amount due numeric field - Adobe LiveCycle 29-04-2013
I am working on a registration form and need to apply a discount if two particular checkboxes are selected. Checkbox #1 – Early registration = $1595Checkbox #2 – Standard registration = $1795Checkbox #3 – Special rate = $495Checkbox #4 – Optional workshop = $395Numeric Field – Total Payment DueIf the user selects checkbox #1 (early) or #2 (standard), they have to pay the $395 for the optional workshop. Total box = sum (EarlyReg, StandardReg, SpecReg, WorkshopReg) <-- THIS WORKSIf the user select...

Views

653

Likes

0

Replies

2