Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

fullcalendar removing header still shows small cell

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

like image 985
Utarehpson Avatar asked Mar 15 '13 09:03

Utarehpson


People also ask

How do I change the view in Fullcalendar?

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.

How do I turn off full date in Fullcalendar?

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.

How do I uninstall Fullcalendar 12a?

To delete "12a", add displayEventTime: false . This is the correct answer.

How do I start and end date in Fullcalendar?

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').


2 Answers

You can hide header by config like this

header:false

like image 83
Senthil Avatar answered Sep 20 '22 11:09

Senthil


You can add the config like this.

headerToolbar: false

refer to this

like image 36
hotcakedev Avatar answered Sep 22 '22 11:09

hotcakedev