Fullcalendar使用CSS / JS修复周高

时间:2017-01-30 13:52:54

标签: fullcalendar

此处示例:

http://jsbin.com/lonopu/edit?html,css,js,output

我将日历作为侧边栏设置为宽度:260px,并在fullcalendar中将高度设置为480px以避免滚动。如何在不滚动的情况下为日历提供方形外观?我只想减少行高,但是

.fc-row .fc-week .fc-widget-content { height: 20px }

不起作用,我猜是因为日历高度是在运行时动态设置的。

1 个答案:

答案 0 :(得分:1)

你可以试试这个:

eventAfterAllRender: function(){
  $('.fc-week.fc-widget-content.fc-rigid').attr('style', 'min-height: 3em');
}

而不是:

eventAfterAllRender: function(){
  $('.fc-row').css('min-height','10px'); 
  $('.fc-week, .fc-widget-content, .fc-rigid').attr('style','height: 10px');
},