Primefaces日历日期字段在ajax请求后不工作



我有一个字段在我的jsf页面。我放了一个ajax请求,允许我做一个治疗。当我第一次使用picker时,它工作得很好。处理完成后,滑块不再更新日期字段。为了使它再次工作,我必须关闭选择器并再次打开它。我的字段模式是dd/mm/yy hh:mm。这是我在JSF页面中的选择器:

<p:outputLabel for="datetimeslotStart" value="#{vocabularyBean.localizedMap.lblDateFromEmpty}&#160;:" />


有人已经有这个问题了吗?

下面是代码抱歉

<h:panelGrid columns="2" id="manualAssignmentsTimeslotPickerStart">
                            <p:outputLabel for="datetimeslotStart" value="#{vocabularyBean.localizedMap.lblDateFromEmpty}&#160;:" />
                            <p:calendar id="datetimeslotStart" value="#{manualAssignmentsBeanAlias.timeslotStart}" pattern="dd/MM/yyyy HH:mm" showOn="button" >
                                <p:ajax event="change" listener="#{manualAssignmentsBeanAlias.onDateTimeslotStartSelect}"  update="@(.dialogMain)" />                                   
                            </p:calendar>   
                        </h:panelGrid>

相关内容

  • 没有找到相关文章

最新更新