Expand my Community achievements bar.

Learn about Edge Delivery Services in upcoming GEM session

Auto-populate Address from Radio Button Selection

Avatar

Level 1

Very new to working in livecycle, so I apologize if this has been answered elsewhere but I have searched on google for several days and not found a suitable answer.  So here is my dilemma:

I have a radio button with 6 options and I want to auto-populate the ship2address text field based on which radio button was selected. 

Thank you for any assistance.

3 Replies

Avatar

Level 4

You can use the below code of click event of every checkbox

if(checkbox1.rawValue==1)

   ship2address.rawValue="value of checkbox1";


~Vipin

Avatar

Level 1

Your response is for checkboxes?  I have a radio button group with 6 options.

Avatar

Level 4

You can use the same code, just replace radio1 from checkbox1.

~Vipin