如何防止fullcalendar显示开始
在monthview中,fullcalendar具有很好的功能,可以显示非allDay事件顶端的开始时间。 如果您不想在活动标题中提供更多详细信息,这可能会很有用。
我想在月视图中显示几个细节,例如开始和结束时间(15.00 - 18-00),位置等。
这导致fullcalendar显示我的事件如下:“15 15.00 - 18.00”。
有什么办法可以防止fullcalendar显示开始时间吗?还是有什么办法可以让fullcalendar显示完整的时间范围(15.00 - 18.00)?
谢谢。 亚历克斯
这是你正在寻找的...
http://arshaw.com/fullcalendar/docs/text/timeFormat/
timeFormat: 'H(:mm)' // uppercase H for 24-hour clock
我相信,如果你想删除所有你必须做的是包括一个空字符串又名...
timeFormat: ''(, or no , depending on if there is another object following)
试试这个,它适用于我:
$('#calendar').fullCalendar({
displayEventTime : false
});
这应该防止fullcalendar在事件标题中显示开始时间。
正如@Isaak Kleinman在评论中所说,这是正确的语法:
timeFormat: ' ', //with the space
链接地址: http://www.djcxy.com/p/81237.html
上一篇: How to prevent fullcalendar to show the start
下一篇: Adjusting Calendar View Day Display Range for Custom Hours