I have the following code
<h:selectOneRadio value="#{solicitacaoImpressaoBean.entrega.tipoGuia}" class="tipoGuia">
<f:selectItems value="#{solicitacaoImpressaoBean.tipoGuia}" var="guia"
itemLabel="#{guia.descricao}" itemValue="#{guia}" />
</h:selectOneRadio>
which does the following:
Iwouldlikewhenthecategorycodewas1didnotrendertheitemthatisembargo
somethinglike
rendered="#{not solicitacaoImpressaoBean.entrega.peg.categoria.codigo eq 1}"
but how to do this in a selectOneRadio?