jquery - fullcallendar and qTip very slow -


I have a full calendar page that I am using qTip (v2). The problem is that the qTip tip is really slow and sometimes appears to get mouseover events so that I have to mouse over again and then it will be a fire. I have an Ajax call, which I thought it could be slow, but when I removed the AJAX call, there was no difference.

The code below is eventmouseover from fullcalendar. I did not include all the calendar code because I do not believe this is a problem.

  eventMouseover: function (calEvent) {// start mouseOver if (typeof calEvent.TeamDetailID! = 'Undefined') {// start undefined $ (this) .qtip ({content: {title : {Text: calEvent.title}, text: 'Loading ...', Ajax: {url: '/inc/_runcfc.cfm', type: 'post', data: {cfc: 'display', CfcMethod: 'TeamDetail_popUpDetail', TeamDetailID: calEvent.TeamDetailID}, success: function (data, position) {this.set ('content.text', data);}}}, show: {delay: 0}}); // (this) .qtip} // end if undefined} // end mouse over   

I think that even with AJAX calls the tip is quickly replaced with the contents of "loading" Should be pop. ... "Regardless of the time that AJAX takes every other mouseover to change the content code over" work "but still there is something wrong with how I am doing this?

The behavior you are describing looks with your code ... you actually have the first mouseover (EventMOOSOVER handler), the QTT has its own events (So ​​it works on the second mouseover).

Although the eventmeoover event is called again, you are restarting qtip ...

Usually I want to set tooltips events to conditionally display / hide (assuming they are using Qtip versions ).

Comments

Popular posts from this blog

mysql - BLOB/TEXT column 'value' used in key specification without a key length -

c# - Using Vici cool Storage with monodroid -

python - referencing a variable in another function? -