BACKGROUND: I've used the VerticalGrid in unbound mode for a few years, where I handle moving data between the editors and my data object using my own code.
Now I'm trying to use it in MultiRecord layout mode
Name: [ ] Name: [ ] Name: [ ]
Addr: [ ] Addr: [ ] Addr: [ ]
City: [ ] City: [ ] City: [ ]
and binding it to the DefaultView of a System.Data.DataTable:
vGridControl1.DataSource = myDataTable.DefaultView;
vGridControl1.DataBindings.DefaultDataSourceUpdateMode = DataSourceUpdateMode.OnPropertyChanged;
However, changes to a record are not being pushed out to the DataView until the edited record loses focus.
QUESTION: Is there a way to put the grid into a mode where the datasource is updated as soon as the cell editor loses focus? For example, if Name is edited, and the user moves to Addr, the datasource immediately reflects the change?