HI, I have a gridView (with DataTable as DataSource) and im trying to use the "GetChanges()" when the user change some data in the grid.
in order to use it I do this:
(grid.datasource as DataTable).GetChanges()
I found out that when I change one cell in the gridView, and then click out of that row , the GetChange() gives me the changes as it should
but
If I change one cell in the gridView, and then I click in another cell but in the same row. the GetChange() give me Null, like there where no changes.
The event grid_ValueChanged() is fired, but the (grid.datasource as DataTable).GetChanges() still giving null.
any solution?