My code is as follows :
<p:calendar showOn="button"
value="#{searchMB.filledFromDate}"
pattern="MM/dd/yyyy" maxlength="10" id="filledFromDate"
converter="submittedDateConverter"
converterMessage="#{message.filled_date_from_is_not_a_valid_date}"
styleClass="calendar" selectListener="#{searchMB.test}"
onchange="alert('')"
onSelectUpdate="filledToDate_panel">
<f:ajax event="blur" execute="filledFromDate"
render="filledToDate_panel"></f:ajax>
</p:calendar>
public void test(DateSelectEvent event) {
System.out.println("-------------->" + event);
}
I want to implements this function: when I select the down-list of the Calendar , I want to invoke the
testmethod right away, to put the select date to another Calendar input .If I don't add the converter . the method will be triggered.But after I add a converter , the method
selectListener="#{searchMB.test}"can not be triggered.I don't konw why.Anyone can help me ?