Extjs4 MVC里 的C层如何写树的拖动事件,无法触发drop
v层代码:
xtype: 'treepanel',
id:'treeEdit',
width: '25%',
region: 'west',
store:treeStore,
lines:false,
autoScroll:true,
collapsible: true,
title:'树',
displayField : 'menuCname',
animate:true,
viewConfig: {
plugins: {
ptype: 'treeviewdragdrop',
ddGroup: 'gridTotree',
enableDragDrop: true
}
}
------------------------------------------------------------
C层代码:
extend: 'Ext.app.Controller',
init : function(){
this.control({ 'rpdm01':{
afterrender: this.dorender
},
'rpdm01 button[action=cancel]':{
click:this.doCancel
}
)}
这里如何写 Ext.tree.plugin.TreeViewDragDrop 的drop事件