我正在尝试使用弹出按钮将日历验证为输入文本 输入文本已经正确验证。但是,无法验证从弹出按钮中选择日期 我的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>
我该怎么做才能在弹出按钮上应用验证???
答案 0 :(得分:0)
使用ajax,您应该能够键入日历的dateSelect
事件,并执行标准的,ajax驱动的验证。根据文档,弹出模式还可以触发blur
和keyup
上的ajax事件。您指定的change
仅适用于日历的输入文本位