日期:2014-05-16 浏览次数:20665 次
GridTree.on('click', function(node,e){alert("yeah");});
GridTree.on('contextmenu',function(node,e){
e.preventDefault();//阻止浏览器默认弹出功能菜单
node.select();//选中当前节点
var array = e.getXY();//获取事件的页面坐标
menu.showAt(array);//在指定的位置显示该菜单
selnode = node;
});