<p:outputLabel value="#{bundle.CreateDoctorsLabel_patio}" for="patio" />
<p:inputText id="patio" widgetVar="widgetPatio" value="#{doctorsController.selected.patio}"
title="#{bundle.CreateDoctorsTitle_patio}" required="true"
requiredMessage="#{bundle.CreateDoctorsRequiredMessage_patio}"
disabled="true" />
This field is filled from another field via javascript.
The problem is: when it's disabled it pass "null" to controller, and if I remove the attribute "disabled" it gets the value normally.
I've tested already the attribute "readonly" and happens the same.
Does someone have any solution?