Skip to content

Commit

Permalink
fix(TGrid): Fixed tree-grid-multi-row-drag sample related to issue #3439
Browse files Browse the repository at this point in the history
  • Loading branch information
MarielaTihova committed Jul 3, 2024
1 parent 2a573eb commit db3a8e3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export class TreeGridMultiRowDragComponent {
draggedRow.delete();
} else {
this.ids.forEach((rowData) => {
this.treeGrid.deleteRow(rowData);
this.treeGrid.deleteRow(rowData['ID']);
});
this.selected = false;
}
Expand Down

0 comments on commit db3a8e3

Please sign in to comment.