THIS IS A TEST INSTANCE. ALL YOUR CHANGES WILL BE LOST!!!!
...
Code Block |
---|
<s:radio theme="simple" name="selectedOption" list="{optionA}"/> ... <s:radio theme="simple" name="selectedOption" list="{optionB}"/> |
If you want to use some other (or no) label, you can use a map:
Code Block |
---|
<s:radio theme="simple" name="selectedOption" list="#{optionA:'Value A'}"/>
...
<s:radio theme="simple" name="selectedOption" list="#{optionB:'Value B'}"/>
|