<div *ngFor="let col of columns">
...
<div [dragula]="'tickets-list'" [dragulaModel]="col.tickets" (drop)="onDrop($event, col)">
<ul>
<li *ngFor="let ticket of col.tickets">
{{ ticket }}
</li>
</ul>
</div>
</div>
I am working with multiple columns, each containing an array of tickets. Is there a way to determine which ticket was moved and where it was dropped?