gpt4 book ai didi

fullcalendar-在月 View 中显示半天事件

转载 作者:行者123 更新时间:2023-12-04 05:17:00 25 4
gpt4 key购买 nike

如何在月 View 中显示半天事件?例如,我有一个长达12小时的事件。我希望该事件的日期单元格仅显示半条。那可能吗?如果是这样,您如何实现呢?

最佳答案

所以事件被定位为“绝对”,这是一个棘手的事件.....

像这样使用eventAfterRender回调:

    , eventAfterRender: function(event, element, view) {
/**
* get the width of first day slot in calendar table
* next to event container div
*/
var containerWidth = jQuery(element).offsetParent()
.siblings("table").find(".fc-day-content").width();

// half a day
var elementWidth = parseInt(containerWidth / 2);

// set width of element
jQuery(element).css('width', elementWidth + "px");
}

当然可以改善:-)

关于fullcalendar-在月 View 中显示半天事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3382530/

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