Hide start time in FullCalendar

后端 未结 13 1616
灰色年华
灰色年华 2021-02-06 21:32

On FullCalendar, in the month view, is there a way to hide an event\'s start time?

13条回答
  •  暖寄归人
    2021-02-06 22:00

    According to http://fullcalendar.io/docs/text/timeFormat/ , you just need to set time format in fullCalendar settings:

    $('#calendar').fullCalendar({
        events: [              
        ],
        timeFormat: ' '
    });
    

提交回复
热议问题