1、点击树的节点触发test。参数为节点的id
listeners: {
itemclick: function(node,record) {
test(record.data.id);
}
}
2、test函数,在tabpanel中加入新面板。
var tp; // 你的tabpanel
function test(v) {
tp.add({
xtype: "panel",
html: "增加的面板",
}).show();
}