我正在尝试替换旧日历。我的旧日历的一个特点是,如果连续没有事件存在,那么该行会显示得很小。这样可以降低日历的整体高度。
无论事件是否存在,fullcalendar 的版本都要大得多。
如果给定的一周有一个事件,那么该行将变为正常大小。
有没有办法可以使用 fullcalendar 来完成此操作,以避免在没有事件的情况下使用 fullcalendar 使用这么多空间?
感谢 John 4d5,我的日历从此开始:
对此:
我正在尝试替换旧日历。我的旧日历的一个特点是,如果连续没有事件存在,那么该行会显示得很小。这样可以降低日历的整体高度。
无论事件是否存在,fullcalendar 的版本都要大得多。
如果给定的一周有一个事件,那么该行将变为正常大小。
有没有办法可以使用 fullcalendar 来完成此操作,以避免在没有事件的情况下使用 fullcalendar 使用这么多空间?
感谢 John 4d5,我的日历从此开始:
对此:
setMinHeight
在 FullCalendar 的库中编辑函数。这是功能:
function setMinHeight(element, height) {
height = (typeof height == 'number' ? height + 'px' : height);
element.each(function(i, _element) {
_element.style.cssText += ';min-height:' + height + ';_height:' + height;
});
}
将第四行更改为:
_element.style.cssText += ';min-height:' + 0 + ';_height:' + height;