在Extjs中删除网格中的元素

时间:2017-01-03 07:58:34

标签: extjs

我正在尝试实现从面板到网格的拖放。

在面板中我这样做

onDrag: function(e) {
    var pel = this.proxy.getEl();
    this.x = pel.getLeft(true);
    this.y = pel.getTop(true);
    var s = this.panel.getEl().shadow;
    if (s) {
        s.realign(this.x, this.y, pel.getWidth(), pel.getHeight());
    }
},

现在元素是可拖动的。 但我不知道如何在网格中获取drop元素。 在网格中我试图使用插件

{
    ptype: 'gridviewdragdrop',
    //dragGroup: 'dispatch.scheduler',
    dropGroup: 'dispatchGroup'
},

在听众试图听下降事件  但我没有得到任何结果。

让我知道如何实现它。

由于

0 个答案:

没有答案