拖动事件时FullCalendar和qTip UI问题

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

在此处输入图像描述

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

eventRender = function (event, element) { $(element).qtip( { content: '
Hello, World!
', 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: '
Hello, World!
', 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' }); }