Using livecycle-designer, how can I add radio buttons dynamically? -
i need add radio buttons dynamically. having set of options coming form web service call , need convert options radio buttons , show user. how can it?
your question quite vague doesn't explain trying do. going make few assumptions , try answer question based on these assumptions.
assumptions:
- your web service call returning bunch of values need populate in set of radio buttons.
- lets assume trying set caption property of 2 radio buttons (rb1, rb2) in radio button list(radiobuttonlist)
here need do.
- check total number of values getting web service call.
- for each value, create instance of radio button in radio button group.
- populate caption property of radio button display string value.
radiobuttonlist.rb1.caption.value.text = "changed caption";
do let me know if have further questions this.
thanks, armaghan.
Comments
Post a Comment