如何禁用 jQuery Fullcalendar 插件窗口大小调整?

发布于 2024-09-27 09:17:41 字数 134 浏览 4 评论 0原文

我正在使用 FullCalendar 插件,它运行得很好。我想在调整浏览器窗口大小时禁用表格及其单元格的动态调整大小。有这种可能吗?

(我在文档中注意到“windowResize”回调在日历大小已经调整后触发,所以看起来这不会有帮助。)

I'm using the FullCalendar plugin and it's working very well. I would like to disable the dynamic resizing of the table and its cells when the browser window is resized. Is that a possibility?

(I noticed in the documentation the 'windowResize' callback fires after the calendar is already resized, so it looks like that won't help.)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

安稳善良 2024-10-04 09:17:41

您指的是哪种观点?
请查看 weekMode 属性,将月视图和周视图修复为预定义的尺寸。

还有属性 heightcontentHeight 可以帮助您冻结尺寸。

To which view are you referring?
Please have a look at the weekMode property to fix the month and week view to a predefined size.

Also the property height and contentHeight can help you to freeze dimensions.

云裳 2024-10-04 09:17:41

您可以使用 CSS 来做到这一点 - 只需修复您正在其中构建日历的 div 的宽度,日历将不再随窗口调整大小。默认情况下,高度由宽高比设置 1.35 控制。

<script type="text/javascript">
var calendar = $('#calendar').fullCalendar({
// Cut: rest of javascript...
</script>
<style type="text/css">
    #calendar {
        width: 900px ;
    }
</style>
<div id="calendar"></div>

You can do this with CSS - just fix the width of the div that you are building the calendar in and the calendar will no longer resize with the window. The height, by default, is controlled by the aspectRatio setting of 1.35.

<script type="text/javascript">
var calendar = $('#calendar').fullCalendar({
// Cut: rest of javascript...
</script>
<style type="text/css">
    #calendar {
        width: 900px ;
    }
</style>
<div id="calendar"></div>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文