I have an application that when the datagrid is edited, it sends the row changed to a server. This is then propagated to all other clients to ensure that as users edit the datagrid, their changes are synchronised with eachother. I am currently using OnRowValidated to do this.
Rather than send the whole row, I want to just send the value changed according to the column. Is there a way to intercept an edit on the data grid where I will have the following information available:
- The new value of the edited cell
- The row item of the edited cell
- The column of the edited cell