如何解决对焦时PrimeFaces日历不显示日历
使用JSF2.3和PrimeFaces 7.0。当我的页面显示时,它将呈现“文本框”部分,但是当我单击它以将小部件置于焦点时,不会显示日历。 有任何想法吗?我有下面的xhtml。
manualsponsorrpt.xhtml
<h:head>
<Meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<h:outputStylesheet name="css/burnsideweb.css" />
<title>Manual Sponsor Table Report Generator</title>
</h:head>
<h:body>
<f:view>
<h:form id="manrptForm" rendered="#{menubean.sponsorAdminAuthorized}">
<h:outputText value="Manual Sponsor Table Report Generator" styleClass="title"/>
<p:messages showDetail="true" showSummary="true" >
<p:autoUpdate />
</p:messages>
<h:panelGrid columns="3" styleClass="tableComp" >
<p:calendar id="startDate" value="#{sponsorBean.startDate}" />
<h:outputText value=" to "/>
<p:calendar id="endDate" value="#{sponsorBean.endDate}" />
<p:commandButton value="Return to Sponsor Table Admin" action="sponsor"
id="return"/>
<h:outputText value=" "/>
<p:commandButton value="Generate Report" action="#{sponsorBean.runManualReports}"
id="process" />
</h:panelGrid>
</h:form>
<h1><h:outputText value="You are trying to access one of the LLTS custom apps from outside the Dashboard; this is not permitted. Please log into the dashboard at http://pm.llts.com:9090/LingoApps/faces/menu/menulogon.jsp and access the custom app you want from there."
rendered="#{!(menubean.sponsorAdminAuthorized)}"/></h1>
</f:view>
</h:body>
当我的
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。