Hello, I'll try to explain. I want to track dirty records in my dataset row that is bound to controls on window (wpf).
It works fine. Lets say i begin to edit some textbox that is bound to dataTable in that dataSet. After i add one character to textbox, dataset is marked dirty.
But if I delete that character again ( restore original value ), dataset is still dirty. I want after i restore original value to dataSet become not dirty, because in reallity it isn't dirty any more.
Is there any method i need to call so dataset can recompute dirty records from binding fields, or some similar aproach. Thanks.