I have a simple DataGridView that is bound to a list of business objects (with just one editable field per object). I need any changes that the user makes to the value (which is in a DataGridViewTextBoxColumn) to update the bound object. That is, cause an update for every keypress in the same way that is available when binding a normal textbox and using the 'OnPropertyChanged' option.
The reason for this is that I simply need to enable the 'OK' button on the form when the bound object's 'IsDirty' property is true.
There seems to be many discussions on various websites about doing this for checkbox columns and using the CurrentCellDirtyStateChanged event and calling CommitEdit. I have tried this but this had the unfortunate side effect of clearing the cell of all text on the first keypress!
Any help much appreciated, thanks.