2016-06-13 94 views
0

我正在使用ng2-dragula拖放元素。 我需要我的拖動&下降在一個方向Drag and Drop angular2 Dragula

例如我有一個項目的菜單,我用這個項目填充我的div,所以它不合邏輯從我的div拖到菜單。

我已經找到了這個配置,以保持我的項目在菜單

this.dragulaService.setOptions('first-bag', { 
      copy: true, 
     }); 

回答

0

添加一個「身份證」你的菜單,改變你的setOptions如下:

this.dragulaService.setOptions('first-bag', { 
    accepts: function (el, target, source, sibling) { 
    return (target.id != 'dragula-source'); 
    }, 
    copy: true 
});