-
13 Mar 2013 1:55 PM #1
quick tip stuck after mousing off of tree panel
quick tip stuck after mousing off of tree panel
I have basic qtips defined on node interfaces for a tree panel. If I hover over tree panel items, the qtips pop up just fine. If I move the mouse off of the tree panel onto another part of the page, the qtip follows the mouse. The interesting thing is the qtip that gets stuck to the mouse is always taken from the last qtip in the tree.
Mousing over another major component makes the stuck qtip disappear, I'm assuming because of a reevaluation by the QuickTipManager.
This did not appear to happen in 4.0.7 or 4.1.3.
Workarounds?- The TreePanel's containermouseout event doesn't trigger like I was hoping so I guess I'll start another thread on that.
- I tried creating a hidden node interface with no qtip. That works, but I can't completely hide that dummy node.
- I tried playing with the QuickTipManager configuration. That can help, but that has side effects for any other qtip in the interface.
-
14 Mar 2013 11:38 AM #2
I can't repro this.
Running the following in a page which has the tree classes present works:
Hovering over the node shows a tooltip containing "Bar".Code:new Ext.tree.Panel({ title: 'Node has qtip', renderTo: document.body, store: { root: { text: 'foo', qtip: 'Bar' } }, height: 300, width: 200 });
Moving off the node hides it.
Can you show a simple testcase like this exhibiting the bug?Search the forum: http://www.google.com/coop/cse?cx=01...%3Az7of1ufqccu
Read the docs too: http://extjs.com/deploy/dev/docs/
Scope: http://extjs.com/forum/showthread.ph...642#post257642


Reply With Quote