Hi,
is it possible to find the node of a TreePanel via mouse coordinates or via the ID of the nodes HTML element?
Hi,
is it possible to find the node of a TreePanel via mouse coordinates or via the ID of the nodes HTML element?
You want the id on hover only and not selection?
Scott.
Corrent. I want the ID on hover but without registering for an event at the tree node. The coordinates come from somewhere else.
I do not believe this is possible.
Scott.
Not sure I follow the use case, how about just using:
Code:Ext.getCmp('treepanel-1001').view.on('itemmouseenter', function(){console.log(arguments);})
Thanks for the answers!
I found a solution an StackOverflow:
http://stackoverflow.com/questions/11099578/extjs4-find-tree-node-by-screen-coordinate-or-html-element
Good to know .. learn something every day
Scott.