仅在有事件时,如何在完整日历中设置一个月视图以扩展



我已经为我的项目定制了fullcalendar插件,看起来像这个月。如您所见,空日期的高度与date's with the Events的高度相同。我想要的是,本月查看without any event day should be small.我现在使用纵横比设置了天数。请指导我。谢谢你欢呼...

这是对我特别感谢@adyson的帮助和建议的答案。

var calHeight = function() {
    $('#calendar').find('.fc-row').each(function() {
        var ogHeigth = '';
            if ($(this).find('.fc-event-container').length > '0') {
                ogHeigth = $(this).outerHeight();
            }
            if ($(this).find('.fc-event-container').length == '0') {
                $(this).css('height', ogHeigth - ogHeigth / 3);
            }
    });
}

我将此功能放在完整日历中的所有功能中,以便每当添加,更新或删除事件,更改日期等时运行。它对我有用。希望这对你们有帮助。ty

相关内容

  • 没有找到相关文章

最新更新