Take a look at using <t:radio> - I think that gives you complete
control over what's rendered for each option.
On 3/14/07, Steve Torrefranca <[EMAIL PROTECTED]> wrote:
how do we hide the label of selectOneRadio or any component that uses
selectItems? the List used in selectItems is a static List where values
and labels are preloaded. In some pages I would like to hide the label
for these radio/checkboxes and put the labels on a facet. Example
yes no maybe
[] [] [] do you like the color pink?
[] [] [] are you color blind?
<t:selectOneRadio value="#{questions.answers}" >
<f:selectItems value="#{questions.selectItems}"/>
</t:selectOneRadio>
-Steve