-
27 Apr 2011 9:42 AM #11
nope.. not using tooltip.. using window..
thanks for the help..
-
27 Apr 2011 10:05 AM #12
It was quite simple actually.. all I had to do is this:
Code:var startTime; appointmentIcon.on({ 'mouseenter' : { fn : function() { startTime = setTimeout("Ext.Msg.alert('Alert','After 500ms')", 500); } }, 'mouseleave' : { fn : function() { clearTimeout(startTime); } } });
Similar Threads
-
Add mouseover Event to text box (or element which not contain mouseover event)
By JazzMan88 in forum Ext 3.x: Help & DiscussionReplies: 4Last Post: 2 Mar 2011, 9:55 PM -
problem: mouseover calling twice & delay question
By headroot in forum Ext 2.x: Help & DiscussionReplies: 4Last Post: 21 Jun 2009, 2:00 AM -
too much delay
By zeta28 in forum Ext 1.x: Help & DiscussionReplies: 0Last Post: 16 Jan 2008, 4:37 AM -
Delay before page can be used
By fwabbly in forum Ext 2.x: Help & DiscussionReplies: 4Last Post: 10 Dec 2007, 8:53 AM -
Why the Delay
By ekatz in forum Community DiscussionReplies: 1Last Post: 13 Aug 2007, 12:08 PM


Reply With Quote