我正在使用 sencha 创建一个嵌套列表。现在点击我得到一个列表,它一直持续到我到达叶节点。
现在我想要的是,在单击叶节点时,我想生成一个事件,使我能够打开文件。
不知道该怎么做。
我的嵌套列表代码是
Ext.define("InfoImage.view.nestedList", {
extend:'Ext.NestedList',
xtype:'nestedList',
id:'nestedList',
config:{
fullscreen:'true',
title:'Nested List',
xtype:'nestedList',
displayField : 'text',
html:'Nested List on its way!!!',
store:'nestedListStore'
//itemTpl:'{text}'
}
});
提前致谢。