fullCalendar timeformat customizing

时间:2014-12-23 07:55:45

标签: fullcalendar time-format

我试图按计划类型自定义FullCalendar的时间格式。

我想在allDay计划的情况下设置日期值(而不是时间值),并在相同的议程视图中分别设置时间表中的时间值。 换句话说,我想做点什么,

$('#日历&#39)。fullCalendar(

              timeFormat: {
                     allDay: 'mm-dd',
                     timeSchedule(not allDay):'HH:MM'
                           }

这可能吗?

1 个答案:

答案 0 :(得分:0)

不确定你到底想要做什么,但我操纵了eventRender中特定事件的标题,如下所示:

eventRender: function(event, element, view) {
  if(event.allDay) {
    timeformat = event.start.format('your format') + ' - ' event.end.format('your format');
    element.find('.fc-title').html(timeformat + ' ' + event.title);
  }
}