So i have a set up of a radio button selection such as option1,option2,option3 and when option1 is selected option1's visibilty region will display same thing for option2 and 3.
This worked fine until I needed to bold one of those selections, so I made a separate radio button and aligned so it looks like its part of the original radio button section.
Now my only issue is only one selction should be choosen, well with there being and entirely seperate button they have both selected which interfere with the data displays.
So used this in the fn window:
{if DOCUMENT.RADIO <> "" then DOCUMENT.RADIO2 = "" else if DOCUMENT.RADIO = "" and DOCUMENT.RADIO2 = "" then "" endif endif}
Only problem now is if DOCUMENT.RADIO is selected when DOCUMENT.RADIO2 is clicked nothing happens until I deselect DOCUMENT.RADIO.
Anybody have an idea of how to make these to work like opposing check box list?
Thanks in advance!
Try naming all the individual radio buttons (option1, option2, option3) DOCUMENT.RADIO.
Thanks Mike. I was able to get this working also if anyone wants to try this:
in the fn windows:
{!if DOCUMENT.RADIO <> "" then
DOCUMENT.RADIO2 = "" else ""
endif}
{!if
DOCUMENT.RADIO2 <> "" then
DOCUMENT.RADIO = "" else ""
endif}