IgniteUI / igniteui-angular

Ignite UI for Angular is a complete library of Angular-native, Material-based Angular UI components with the fastest grids and charts, Pivot Grid, Dock Manager, Hierarchical Grid, and more.
https://www.infragistics.com/products/ignite-ui-angular
Other
572 stars 161 forks source link

rowDragStart and rowDragEnd events are not fired in version 11.1.10 #9580

Closed omanzelli closed 3 years ago

omanzelli commented 3 years ago

Description

The rowDragStart and rowDragEnd events are not fired in version 11.1.10

Steps to reproduce

Here a testing project https://stackblitz.com/edit/infragistics-rowdrag-not-fired Check the logs in the console.

Result

The rowDragStart and rowDragEnd events are not fired.

Expected result

Start dragging a row, the rowDragStart event is fired. Dropping the row, the rowDragEnd is fired. Installing the version 12, these events are fired properly. This means that I need to migrate the project to Angular 12 to solve this issue.

Attachments

https://stackblitz.com/edit/infragistics-rowdrag-not-fired Check the logs in the console.

hanastasov commented 3 years ago

The events in 11.1.0 had the on prefix:

    <igx-grid igxPreventDocumentScroll [data]="moonData" [primaryKey]="'name'" [rowDraggable]="true"
      (onRowDragStart)="onRowDragStart($event)" (onRowDragEnd)="onRowDragEnd($event)">
omanzelli commented 3 years ago

Thank you!