after researching for a while I still cannot find what I'm doing wrong.
I'm using Primefaces 3.5 with Seam. I have a selectOneMenu that is submitting a null value to the method manualServiceRequestController.setService(Service service)
.
This is the .xhtml code:
<p:selectOneMenu id="service" value="#{manualServiceRequestController.service}">
<f:converter converterId="serviceConverter" />
<f:selectItems value="#{manualServiceRequestController.allServices}" />
<p:ajax render="parameterPanel" event="change" process="@parent" partialSubmit="true" />
</p:selectOneMenu>
Thanks!
required="true"
top:selectOneMenu
, the request is never sent to the server. I've also checked logs (<p:log>
) and nothing unusual appears. – jigarzon