Hello,
I am actually using h:selectOneMenu to display items, given to it from f:selectItems tag.
Rather than displaying a text, I wanna prefer to display an image.
How is it possible, since there I have not found any way to render html coming from the selectItem "value" attribute ?
Thanks, here is my current code, without any image display ...
<h:selectOneRadio layout="spread" value="#{question.candidateAnswer.value}"
disabledClass="invalid_choice" enabledClass="valid_choice" >
<a:support event="onchange" actionListener="#{answerManager.answer}"
reRender="zoneQuestions, zoneNavigation, zoneScenariiList, zoneCart" />
<f:selectItems value="#{question.choices}" />
</h:selectOneRadio>
Thanks