(JSF 1.2 and PrimeFaces 6.1)
I have a problem with the p: calendar tag, the problem occurs when selecting the calendar date, I don't see any action.
XHTML:
<p:calendar id="fechaPriseEnCharge" size="12" maxlength="10" pattern="dd/MM/yyyy" mask="true" locale="es"
effect="scale" showOtherMonths="true" navigator="true" showButtonPanel="true"
value="#{altaOrdCargaController.ordCargaCabecera.fechPriseEnCharge}">
<p:ajax event="dateSelect" listener="#{altaOrdCargaController.dateChange}"/>
</p:calendar>
JAVA:
public void dateChange(SelectEvent event) {
ordCargaCabecera.setFechPriseEnCharge((Date) event.getObject());
validarContrato(null);
}
Attached image of the calendar. What I do is select the day 27 (or any day), but it does nothing, does not set the value, or does the dateCahange method.