Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by why on May 26, 2009 17:37
open dhtmlx forum
how to get treenode position (x,y)

i wonder how to get treenode postion(x,y) when context menu click
because i want to create a window at the treenode position.

thank you !


such as the tree has two node,A and B,when i click the B,i want to create a window at the node B position,so i need the clientX and clientY.
Answer posted by Alex (support) on May 27, 2009 05:47

Hello,

try to use the following

tree.attachEvent("onRightClick",function(id,ev){

var x = ev.clientX;

var x = ev.clientY;

...

});