gpt4 book ai didi

jQuery 全日历 : Disable scrolling in Agenda View?

转载 作者:行者123 更新时间:2023-12-03 21:59:28 25 4
gpt4 key购买 nike

如何使用 FullCalendar jQuery 插件禁用议程 View (周、日模式)中的滚动?在月份模式下一切都很好,但是当我更改为周/日模式时,我的主页滚动条旁边有一个滚动条。

最佳答案

这就是我在我的案例中所做的。目标是动态更改高度,因此我以这种方式使用 viewDisplay 事件:

$('#calendar').fullCalendar({
viewDisplay: function (view) {
var h;
if (view.name == "month") {
h = NaN;
}
else {
h = 2500; // high enough to avoid scrollbars
}

$('#calendar').fullCalendar('option', 'contentHeight', h);
}
});

关于jQuery 全日历 : Disable scrolling in Agenda View?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10239986/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com