月视图中的一天事件

你如何在月视图中显示半日活动? 例如,我有一个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");
    }

当然可以改进:-)

链接地址: http://www.djcxy.com/p/2293.html

上一篇: day event in the month view

下一篇: Which authentication gem/plugin should I use for Rails 3 running on CouchDB?