Primefaces 4.0.16 <p:calendar> 不显示正确的时间滑块

Primefaces 4.0.16 <p:calendar> Doesn't show proper Time sliders

版本 素面:4.0.16 日本联合舰队:2 所以我有这个 <p:calendar> 我希望可以选择日期和时间。

<p:calendar widgetVar="fromCal" id="fromDate" locale="#{lsutil:getLocale()}" pattern="#{lsutil:getCalendarDateTimeOnly()}" navigator="true"
                        onfocus="Util.dateMask(this,'#{lsutil:getCalendarDateTimeOnly()}');" value="#{createTestPlanController.model.timeFrom}"
                        required="true" title="#{component.valid ? '' : msg['createTestPlan.testPlanFailedInvalidTimeRange']}" />

如您所见,我在 <p:calendar> pattern=”MM/dd/yyyy HH:mm” pattern="#{lsutil:getCalendarDateTimeOnly()}"

我可能会补充说它在 af <ui:composition> 中打开 - 不知道这是否与它有任何关系?

pattern="#{lsutil:getCalendarDateTimeOnly()}" 在我的 .xml 文件中调用我的函数:

<function>
     <function-name>getCalendarDateTimeOnly</function-name>
     <function-class>lyngsoe.catellae.infrastructure.CatellaeUtils</function-class>
     <function-signature>java.lang.String getCalendarDateTimeOnly()</function-signature>
</function>  

然后从这里深入到我的 .java 文件

public static String getCalendarDateTimeOnly(){
    return CatellaeUtils.getCurrentUser().getCalendarDateTimeOnlyString();
}

再次向下钻取到另一个 .java 文件,其中我删除日期字符串中的 EEE 的方法,表示星期几的 EEE(MON、WED、SAT 等)

public String getCalendarDateTimeOnlyString()
{
    String dTFS = this.getDateTimeFormatString();
    String patternRegex = "[a-zA-z][a-zA-z][a-zA-z]\s";
    try {
        String dateTimeOnlyString = dTFS.replaceFirst(patternRegex,"");
        return dateTimeOnlyString;
    } catch (Exception e) {
        e.printStackTrace();
    }
    return null;

}  

我正在使用 replaceFirst 过滤器从 EEE dd-MM-yyyy HH:mm:ssdd-MM-yyyy HH:mm:ss 并将其保存在变量 dateTimeOnlyString 中并返回它。据我在 Chrome 的 F12 中看到它确实需要时间, if 我手动输入它。按钮 Timepicker

上的第 52 页上的 Primefaces Doc 4.0 中没有滑块

尝试了简单的解决方案

所以为了争论,我想尝试一个 simpel <p:calendar> 看看它是否有效,但它没有。

<p:calendar id="fromTime" value="#{createTestPlanController.model.timeFrom}" pattern="HH:mm" timeOnly="true"

我在这里得到的是一个字段,第一次重新加载时我得到当天的探测器时间,但是当我单击它并想要更改时间时,它会打开日历视图。
正如第 44 页顶部所示 Primefaces Doc 4.0


现在,根据我在 Primefaces Doc 4.0 中看到的内容,我正在按照它说的去做,至于获得第 52 页底部显示的结果

当前状态:无法更新我的 primefaces 版本。

有可能解决方案的问题
Primefaces calendar picker doesn't work with MMM pattern - 问题是在视图中设置了一些疯狂的语言环境 看不到真正的解决方案。

所以解决方案,对我来说是利用 inputMask 然后将其向下拖动,根据所选日期和时间制作时间戳,然后保存。

在我看来这不是一个探测器解决方案,但它确实做到了。

如果有人知道真正的解决方案,那么我只能使用日历 - 我更乐意接受建议:)