如何更改p:schedule中的按钮标签和时间格式



我使用了PrimeFaces的时间表。如何更改时间格式和按钮标签?

由于Primefaces使用了jquery FullCalendar,就像@JasperDeVries在How to get the event when prev中的回答中提到的那样,在p:schedule中单击next,Primeface具有扩展程序功能(在同一个问题的回答中也提到了另一个问题(,我能够修复timeFormat="LT"的时间格式问题,还使用extender="initSchedule"更改按钮标签。

<h:outputScript>
function initSchedule() {
// Configure fullCalendar
this.cfg.eventOrder = "-title"; // Sort descending order
this.cfg.buttonText = { today : 'Current Date'};
}
</h:outputScript> 

相关内容

  • 没有找到相关文章

最新更新