extjs 4 tree 事件 的单击节点时间怎么添加??

当我双击一个树上的节点时,获取到该节点并作出相应响应,这怎么实现?... 当我双击一个树上的节点时,获取到该节点并作出相应响应,这怎么实现? 展开
 我来答
zxy_software
推荐于2016-05-21 · TA获得超过195个赞
知道答主
回答量:69
采纳率:0%
帮助的人:87.1万
展开全部
treePanel.on({
//目录树单击事件
'itemclick' : function(view, rcd, item, idx, event, eOpts) {
var dirid = rcd.get('id'); //节点id
var dirtype = rcd.raw.dirtype; //自定义数据
},
//目录树双击击事件
'itemdblclick' : function(view, rcd, item, idx, event, eOpts) {
var dirid = rcd.get('id'); //节点id
var dirtype = rcd.raw.dirtype; //自定义数据
},
//目录数右键事件
'itemcontextmenu' : function(view, rcd, item, idx, event, eOpts) {
event.preventDefault();
this.showTreeItemMenu(rcd, event); //自定义处理函数
},
scope : this
});

!!多查查extjs的api,对每个属性\方法\事件都有详细解释
wu286121765
2012-10-30 · TA获得超过106个赞
知道小有建树答主
回答量:214
采纳率:100%
帮助的人:159万
展开全部
var store = Ext.create('Ext.data.TreeStore', {
root: {
expanded: true,
children: [
{ text: "detention", leaf: true },
{ text: "homework", expanded: true, children: [
{ text: "book report", leaf: true },
{ text: "alegrbra", leaf: true}
] },
{ text: "buy lottery tickets", leaf: true }
]
}
});

var tree = Ext.create('Ext.tree.Panel', {
title: 'Simple Tree',
width: 200,
height: 150,
store: store,
rootVisible: false,
renderTo: Ext.getBody()
});

tree.on({
'itemclick' : function(thisTree, record, item, index, e, options) {
// thisTree自己本身
//record 点击选中的记录,rcd.get('id'); //节点id
},
})
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式