Is there any way to retrieve all the rows that have changed in an editable igx-grid similar to the functionality in your JavaScript version of the grid: igGrid("pendingTransactions")?
Thanks,
Jeff
Hi Jeff,
In the igx-grid when update a cell/row it is directly affected in the datasource and there is no such method.
Here you can see samples of editing in the igx-grid:
https://es.infragistics.com//angularsite/components/grid_editing.html
Sincerely,
Nadia Robakova
Thanks for the reply Nadia. Yes I saw the sample that you provided above. So is the best practice to determine which rows have changed in data source is to flag them with some type of dirty bit in the setter method when a change occurs? In your example that would be in the Product class.
JK
You can use events:
and to keep the changes or to flag rows in the datasouse when a change is made.
Nadia
Thanks so much.