minTime和maxTime无法使用schedule primefaces

时间:2016-10-21 11:13:39

标签: jsf primefaces jsf-2

我正在尝试使用PrimeFaces的时间表,我使用版本5.1-RC1 minTimemaxTime正常工作,但当我升级到5.36.0它不起作用。

<p:schedule view="agendaWeek" slotMinutes="30" timeZone="GMT+2" 
            axisFormat="H:mm" locale="fr" maxTime="19" minTime="7"
            value="#{mybean.myModel}" id="idCanlandrier">
    <p:ajax event="dateSelect" oncomplete="PF('wNew').show();" />
</p:schedule>

The correct with version primefaces-5.0-RC1

The wrong with version primefaces-5.3 and primefaces-6.0

  

我必须做任何改变吗?

1 个答案:

答案 0 :(得分:1)

我将其与PrimeFaces 5.3一起使用,如果您使用字符串值格式与分钟(":00") =&gt;您可以解决它maxTime="19:00

对我来说,我有一个像这样的backingBean返回String值,它工作正常:

public String getMaxTime() {
   Integer time=9;
   return time.toString()+":00";
}

希望此解决方案能为您提供帮助。