如何使用Ext.tree.ViewDDPlugin的事件?如何在TreePanel上拖放後觸發事件
我有一個使用DDPplugin的TreePanel,但我想知道如何聆聽drop事件。
這是我的代碼如下所示:
var monPretree = Ext.create('Ext.tree.Panel',{
id : 'treepanel',
title : 'TITRE',
//width : 800,
//height : 600,
width : 500,
enableDD: true,
useArrows : true,
viewConfig : {
plugins : {
ptype: 'treeviewdragdrop',
appendOnly: true,
listeners: {
drop: function (node, data, overModel, dropPosition) {
alert('CHANGE');
},
notifyDrop: function (dragSource, event, data) {
var nodeId = data.node.id;
alert(nodeId);
},
notifyOver: function (dragSource, event, data) {
alert('over');
}
}
}
},
singleExpand : false,
store : monPrestore,
rootVisible : false,
我想解僱例如丟棄事件,但我的代碼不能正常工作
謝謝:)
不被解僱。這是一個樹偵聽器還是一個ViewConfig偵聽器? – 2016-11-24 12:13:09