The IsDirty property actually looks through the DataTable to see if there are any changes. To "reset" the IsDirty property all you need to do is reject the changes on the DataTable (or AcceptChanges if you want to keep the data the same within the DataTable but just not write it back to the server). This will reset the IsDirty flag and you can then have the behavior you are looking for.FYI....in version 1.6.1 there is now an IsDirtyChanged event that you can handle which will tell you immediately when a value within the internal DataTable has been changed. This really doesn't matter much to what you were doing, but I know that people have asked for this in the past and I could not remember if you were one of them.