FullCalendar - Change event (appointment, diary entry) height

前端 未结 1 1828
野性不改
野性不改 2021-01-26 07:48

I\'m trying to change the height of an event (appointment) in FullCalendar.

I followed the suggestion in this answer How to edit width of event in FullCalendar?

相关标签:
1条回答
  • 2021-01-26 08:24

    You could try something like this:

    eventRender: function(event, element, view) {
        var cellheight = $('.fc-widget-content').height();
        $(element).css('height', cellheight);
    },
    

    Doesn't seem to work as well with eventAfterRender but if you play around with it a bit you should get something to meet your needs

    0 讨论(0)
提交回复
热议问题