I have an h: selectOneRadio tag to display a number of radio objects:
<h:selectOneRadio value="#{myBean.radioButtonSelection}">
<s:selectItems value="#{myBean.getPossibleRadioButtonSelections()}" var="rs" label="#{rs.toString}"/>
</h:selectOneRadio>
Now instead of ham radio with string values ββ(shortcuts), I would like to have radio buttons with (clickable) images next to it. Is it possible? If so, how?
Update: In fact, there should be both text and an image with a question mark that shows the modal panel when you click on it.
source
share