Usig this element
<p:selectOneRadio id="selempaque" value="#{mbcompletado.empaque}">
<f:selectItem itemLabel="Si" itemValue="true"/>
<f:selectItem itemLabel="No" itemValue="false"/>
<p:ajax update="colEmp"/>
</p:selectOneRadio>
I want to render a
<p:column id="colEmp" rendered="#{mbcompletado.empaque}"> .... </p:column>
But it does not change the render until I refresh the page. I want to use the Radio value to either show or hide the column.
Using primefaces and glassfish Thanks in advance