gpt4 book ai didi

javascript - 拖动事件时出现 FullCalendar 和 qTip UI 问题

转载 作者:行者123 更新时间:2023-11-29 19:16:14 25 4
gpt4 key购买 nike

在周 View 或日 View 中拖动事件时。随机地,qtips 将被渲染,旧的仍然在屏幕上。

enter image description here

我一直在使用 api 禁用 qtips,但没有任何结果。以下是我对 fullcalendar 事件呈现事件的 qtip 配置:

eventRender = function (event, element) {
$(element).qtip(
{
content: '<div>Hello, World!</div>',
position: {
target: 'mouse', // Track the mouse as the positioning target
adjust: { x: 5, y: 5 } // Offset it slightly from under the mouse
},
style: 'qtip-light'
}
);
}

最佳答案

@Ibrahim,使用 eventAfterRender 函数。它对我有用。

eventAfterRender: function( event, element, view ) {
$(element).qtip(
{
content: '<div>Hello, World!</div>',
position: {
target: 'mouse', // Track the mouse as the positioning target
adjust: { x: 5, y: 5 } // Offset it slightly from under the mouse
},
style: 'qtip-light'
});
}

关于javascript - 拖动事件时出现 FullCalendar 和 qTip UI 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35149007/

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