How could I trigger an event when a cell is changed on the ObjectEditor?
Closed this issue · 2 comments
First of all I want to thank y'all for this amazing project!
I recently downloaded the 0.2.0 nuget package for the BlazorDatasheet and I was able to pass on data from my DB to the datasheet. Now I'm struggling to save the data back on DB, my first thought was to create a save button that does a bulk save (saving all the data that is present on the sheet in one operation), however, unfortunately, that wouldn't work, since there could be a scenario where, with a huge amount of data, only one row is changed. That's not the most optimized way to do that, so my solution is to trigger an event whenever a cell value is updated, being able to pass on the row id (User.Id) as parameter, then I'd be able to save only that entity/row.
Is there any kind of OnCellChanged()-like event I can call?
Or maybe any other smart alternative approach that I could use?
Here is how I set up my simple example of the ObjectEditor:
Hi @lucasmoraiss you should be able to add an event listener via
editor.Sheet.Cells.CellsChanged += SheetOnCellsChanged;