Hi all: In my JSP I have:
....
<td class="td-contenido" colspan="2">
<h:selectOneMenu value="#{
DiaFeriadoBean.tipFeriado}" readonly="true">
<f:selectItems value="#{
DiaFeriadoBean.tiposFeriadosSelect}" />
</h:selectOneMenu>
</td>
.....
And In the DiaFeriadoBean the value of tipFeriado property is 0, I tried
with disabled = true, but is the same, If I quit the reaonly="true" then I
can get the right value, My question is how can I get the value of a
property that is read only?
Thanks

