I'm trying to put a div for each selectItem inside a selectOneRadio, see:]
<h:selectOneRadio styleClass="radio"
value="#{cursandoMB.alternativasEscolhidas[questaoCurso]}"
converter="entityConverter" layout="pageDirection">
<c:forEach var="c"
items="#{questaoCurso.questao.alternativasPreenchidas}">
<h:panelGroup style="color:red;">
<f:selectItem itemValue="#{c}" itemLabel="#{c.letra}) #{c.texto}" />
</h:panelGroup>
</c:forEach>
</h:selectOneRadio>
Nothing is rendered when i do it, but if i comment the lines <h:panelGroup>
everything works. How can i solve this ?