Skip to content

Commit

Permalink
Merge pull request #3506 from IgniteUI/mtihova/fix-issue-3439
Browse files Browse the repository at this point in the history
Fixed TreeGrid sample row deletion
  • Loading branch information
dkamburov authored Jul 10, 2024
2 parents 2a573eb + db3a8e3 commit 2efaa07
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 2efaa07

Please sign in to comment.