Hi,
I have a h:selectOneRadio tag for displaying a number of radiobuttons:
<h:selectOneRadio value="#{myBean.radioButtonSelection}">
<s:selectItems value="#{myBean.getPossibleRadioButtonSelections()}" var="rs" label="#{rs.toString}"/>
</h:selectOneRadio>
Now, instead of radiobuttons with string values (labels), I would like to have radio buttons with (clickable) images next to it. Is this possible? If so, how?
Update: Actually, there should be both text, and an image with a question mark which shows a modal panel when clicked on it.