I’m using ag-grid and I’m letting the user edit the cells. Is there anyway to track which cells have been edited, besides comparing each one to the original state?
Thanks.
Hi @ssegal100 , check out the following link. It is easy to figure out the indentation (as the code copy-paste got blotched).
Hi, just thought to share this with others, in case anyone needs it:
I found a simple way to update changes made in an aggrid, to a pandas dataframe;
The code also provides a way to iterate through the aggrid. With this method, you can further selectively write to screen or update a database if you want/need to
To test this out, you will need to first create a simple csv file containing 2 columns: Name & Amt with a few entries.
The code is below:
Cheers
Cheers
Thank you @Shawn_Pereira , this is helpful.