I'm trying to remove the header in my dayview in my fullcalendar plugin. using
columnFormat: {day: false},
removes the text but it still leaves a small empty cell! how can I remove this?
image http://img20.imageshack.us/img20/1994/fullcal.png
thanks in advance
If you are using Custom View, you can change the visibleRange in the same way: calendar. changeView('timeGrid', { start: '2017-06-01', end: '2017-06-05' }); This date/visibleRange parameter was added in version 3.3.
You can try the following thread's solution(dayClick or select function to disable the dayclick for the past dates in fullcalendar). You can visit the fullcalendar support center and post your fullcalendar question on the StackOverflow fullcalendar tag.
To delete "12a", add displayEventTime: false . This is the correct answer.
We can get start date by getView event with intervalStart. We can get end date by getView event with intervalEnd. var month = $('#calendar'). fullCalendar('getView').
You can hide header by config like this
header:false
You can add the config like this.
headerToolbar: false
refer to this
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With