我正在使用这个很棒的库来实现拖放功能。 Dragula非常擅长拖放。
我想做的一件事是禁用拖动以在自己的容器中重新排序。但是,如果要放入连接/链接的容器中,则应允许拖动。
例如跟随两个div标签作为容器
<div dragula="dropContainer" id="dropbag1" [(dragulaModel)]="bagOneModel">
<div *ngFor="let model of bagOneModel" class="col-sm-2 col-md-2 col-lg-2">
{{model}}
</div>
</div>
<div dragula="dropContainer" id="dropbag2" [(dragulaModel)]="bag2Model">
<div *ngFor="let model of bag2Model" class="col-sm-2 col-md-2 col-lg-2">
{{model}}
<!-- don't allow re ordering in this container -->
</div>
</div>
答案 0 :(得分:1)
创建允许拖动的内容非常容易:
在您的name.component.ts
中,您应该添加:
constructor(public dragulaService: DragulaService) {
dragulaService.createGroup('dropContainer', {
accepts: (el, target, source, sibling): boolean => {
if (!target || !source || (target === source)) {
return false;
}
return true;
}
});
}