我正在尝试使用弹出按钮验证日历作为输入文本,输入文本已正确验证。但是无法验证从弹出按钮中选择的日期我的 xhtml 代码是:
<p:calendar value="#{indexBean.searchCriteria.date}"
id="date" showOn="button"
mindate="#{indexBean.searchCriteria.mindate}" maxdate="#{indexBean.searchCriteria.maxdate}"
label="Date" converterMessage="The Date must be of the form DD/MM/YYYY and be a valid date"
pattern="dd/MM/yyyy" validator="#{indexBean.validateDate}" widgetVar="dateCalendar"
timeOnly="false">
<f:convertDateTime pattern="dd/MM/yyyy" />
<p:ajax update=":messages" event="change" />
</p:calendar>
我应该怎么做才能在弹出按钮上应用验证???