Primefaces 5.1 calendar popup doesn't execute the valueChange event
问题 I'm try to use the primefaces calendar with popup in this way: <p:calendar pattern="yyyy-MMM-dd" value="#{controller.beginDate}" mask="true" navigator="true"> <f:ajax event="valueChange" listener="#{controller.onChange}" /> </p:calendar> And here is the relative controller: @ManagedBean public class Controller { private Date beginDate; public Date getBeginDate() { return beginDate; } public void setBeginDate(Date beginDate) { this.beginDate = beginDate; } public void onChange() { // do