Reorder group + virtual scroll = problem

Hello everyone,
I tried to combine virtual scrolling and reorder groups like this:

<ion-reorder-group (ionItemReorder)="doReorder($event)" disabled="false">
    <ion-virtual-scroll [items]="items">
      <ion-item *virtualItem="let item">
        <ion-label>
          {{ item }}
        </ion-label>
        <ion-reorder slot="end"></ion-reorder>
      </ion-item>
    </ion-virtual-scroll>
  </ion-reorder-group>

But the problem is that I just can’t select only one item, the entire list is always dragged.
Is there a solution to both have a successful list since I work on large sizes and to be able to drag and drop?

5 Likes