如何防止fullcalendar显示事件标题中的开始时间?

时间:2012-02-16 19:21:01

标签: fullcalendar

月视图中的

fullcalendar具有很好的功能,可以显示非allDay事件顶行的开始时间。如果您不想在事件标题中提供更多详细信息,这可能很有用。

我想在月视图中显示几个细节,例如开始和结束时间(15.00 - 18-00),位置等。

这导致fullcalendar显示我的事件:“15 15.00 - 18.00”。

有没有办法阻止fullcalendar显示开始时间还是有办法让fullcalendar显示完整的时间跨度(15.00 - 18.00)?

感谢。 亚历

4 个答案:

答案 0 :(得分:10)

这就是你要找的......

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)

答案 1 :(得分:9)

试试这个,它对我有用:

$('#calendar').fullCalendar({
     displayEventTime : false
});

这应该会阻止fullcalendar显示事件标题中的开始时间。

答案 2 :(得分:3)

正如@Isaak Kleinman在评论中所说,这是正确的语法:

timeFormat: ' ',       //with the space

答案 3 :(得分:0)

我遇到了同样的问题...虽然我找到了解决办法

将此添加到您的代码中:

displayEventEnd: true,
timeFormat: 'h:mma',