Skip to content Skip to sidebar Skip to footer

Fullcalendar And Qtip Ui Issue When Dragging Event

When dragging an event in week or day view. Randomly, qtips would be rendered with the old ones being still on the screen. I have been disabling the qtips using apis but no result

Solution 1:

@Ibrahim, Use eventAfterRender function. It works for me.

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'
    });
}

Post a Comment for "Fullcalendar And Qtip Ui Issue When Dragging Event"