How to edit width of event in FullCalendar?

后端 未结 6 1513
Happy的楠姐
Happy的楠姐 2021-01-12 15:02

This seems incredibly easy, but I have spent half a day bashing my head against the wall trying to figure out why my fullcalendar events are showing only at 77px, when the w

6条回答
  •  遥遥无期
    2021-01-12 15:59

    you can set event width with eventAfterRender

    $('#calendar').fullCalendar({
      eventAfterRender: function(event, element, view) {
                          $(element).css('width','50px');
                        }
    });
    

提交回复
热议问题