当我调用ajax将信息保存在数据库中时,日历将日期始终从2018更改为2000

时间:2018-11-20 12:24:50

标签: ajax jsf primefaces calendar

当我调用ajax将信息保存在数据库中时,我的日历始终将日期从2018年更改为2000年。

 <h:form id="calendarform">
                                <p:calendar value="#{BeanSchedule.datSendDate}" mask="99/99/9999" locale="pt_BR">
                                    <f:convertDateTime pattern="dd/MM/yyyy" />
                                </p:calendar>


                    <p:commandButton ajax="true"
                                     value="SALVAR"                                                        
                                     class="btn-large"
                                     actionListener="#{BeanSchedule.save()}"
                                     update="@form"
                                     >

在调用ajax之前。 The date is correct

调用ajax后,您可以看到,日期已更改为2000s Date changed to 2000s

如何阻止它?

0 个答案:

没有答案