BlogJava-林海学苑-最新评论http://www.blogjava.net/hilinw/CommentsRSS.aspxjava学习交流zh-cnTue, 22 Jun 2010 13:26:32 GMTTue, 22 Jun 2010 13:26:32 GMTcnblogsre: jsp代码 树上加右键菜单http://www.blogjava.net/hilinw/archive/2009/09/28/296705.html#296706自己自己Sun, 27 Sep 2009 16:07:00 GMThttp://www.blogjava.net/hilinw/archive/2009/09/28/296705.html#296706刚才查了一下,知道怎么禁用了
加:
if(!node.attributes.leaf){
return false;
}
如下:

listeners : {
contextmenu : function(node, e) {
if(!node.attributes.leaf){
return false;
}
node.select();
var c = node.getOwnerTree().contextMenu;
c.leaf = node.attributes.leaf;
c.contextNode = node;
c.showAt(e.getXY());
}
},

自己 2009-09-28 00:07 发表评论
]]>