I have a grid control that is bounded to a DataTable.
Code:
MyGridCtrl.DataSource = MyDataSet.Table[0];
As I understand, this means that whenever the user changes the value of a cell on the GridView, it automatically updates that cell in the DataTable.
Most of the times, this mechanism works for me perfectly, but is it possible for me (the developer) to get in between?
What I mean is that on certain occasions I want to take the new cell’s value, do something on it, and then put the result value in the DataTable.
So, is that possible?