T Tee May 3, 2005 #1 Hi, Is there any way to check whether user has changed the data in a DataGrid? Thanks, Tee
C Chad Z. Hower aka Kudzu May 3, 2005 #2 Tee said: Is there any way to check whether user has changed the data in a DataGrid? Click to expand... Changes in the grid will be reflected in the dataset, and the dataset has many events you can hook to. -- Chad Z. Hower (a.k.a. Kudzu) - http://www.hower.org/Kudzu/ "Programming is an art form that fights back" Make your ASP.NET applications run faster http://www.atozed.com/IntraWeb/
Tee said: Is there any way to check whether user has changed the data in a DataGrid? Click to expand... Changes in the grid will be reflected in the dataset, and the dataset has many events you can hook to. -- Chad Z. Hower (a.k.a. Kudzu) - http://www.hower.org/Kudzu/ "Programming is an art form that fights back" Make your ASP.NET applications run faster http://www.atozed.com/IntraWeb/
T TT \(Tom Tempelaere\) May 5, 2005 #3 Tee, Tee said: Hi, Is there any way to check whether user has changed the data in a DataGrid? Thanks, Tee Click to expand... You could register to the ColumnChanged or ColumnChanging event of the DataTable, and set a boolean isChanged flag to true. Kind regards, Tom T.
Tee, Tee said: Hi, Is there any way to check whether user has changed the data in a DataGrid? Thanks, Tee Click to expand... You could register to the ColumnChanged or ColumnChanging event of the DataTable, and set a boolean isChanged flag to true. Kind regards, Tom T.