On Change Event #173
-
When someone types in new or updated Note on row x and column 12, I want Blazor Datasheet to call a method/function when the cell would fire OnChangeCompleted after the row was updated. The final version I am using is below and does NOT fire when text is pasted in the cell and click on a new row.
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hi @deanparker-web you should be able to use the |
Beta Was this translation helpful? Give feedback.
-
Thanks, that works. I have updated the code to use cellschanged.
|
Beta Was this translation helpful? Give feedback.
Hi @deanparker-web you should be able to use the
sheet.Cells.CellsChanged
event to track instead of the edit finished event.