Skip to content

Commit db3a8e3

Browse files
Mariela TihovaMariela Tihova
authored andcommitted
fix(TGrid): Fixed tree-grid-multi-row-drag sample related to issue #3439
1 parent 2a573eb commit db3a8e3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/app/tree-grid/tree-grid-multi-row-drag/tree-grid-multi-row-drag.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export class TreeGridMultiRowDragComponent {
3535
draggedRow.delete();
3636
} else {
3737
this.ids.forEach((rowData) => {
38-
this.treeGrid.deleteRow(rowData);
38+
this.treeGrid.deleteRow(rowData['ID']);
3939
});
4040
this.selected = false;
4141
}

0 commit comments

Comments
 (0)