我在Primefaces 5.0中使用日历组件:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:p="http://primefaces.org/ui"
xmlns:f="http://xmlns.jcp.org/jsf/core"
xmlns:ui="http://xmlns.jcp.org/jsf/facelets">
<h:body id="body">
<h:form id="frm">
<p:outputLabel value="My Date:" />
<p:calendar value="#{mybean.myDate}"
pattern="yyyy-MM-dd HH:mm:ss"
id="myDate"
>
<f:convertDateTime pattern="yyyy-MM-dd HH:mm:ss"/>
<p:ajax process="@this" update="@this" event="dateSelect"/>
</p:calendar>
</h:form>
</h:body>
</html>
我的web.xml设置为:
<context-param>
<param-name>primefaces.THEME</param-name>
<param-value>bootstrap</param-value>
</context-param>
此组件工作正常,但有一个异常:当用户选择一个日期而没有设置时间时,日历不会隐藏,否则当用户选择日期时,一段时间后日历会隐藏。
我可以将日历组件设置为在日期选择后隐藏吗?
由于