对焦时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 (将#修改为@)

相关问答

Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其...
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。...
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbc...