I am working with editing within a DataGrid control cell and am confused about which events occur after the editing is completed. I see that 5 events can occur total, including the ones below and AfterColEdit, AfterUpdate.
1. BeforeColUpdate/ 2. AfterColUpdate/ 3. BeforeUpdate or all of these occur?
1. BeforeColUpdate says after editing is completed in a cell, but before dates is moved from the cell to the DataGrid control's copy buffer.
2. AfterColUpdates says that after data is moved from a cell in the DataGrid control to the DataGrid control's copy buffer.
3. BeforeUpdate says after editing is completed in a record, but before data is moved from the DataGrid control's copy buffer to the ADO data control's copy buffer.
1. BeforeColUpdate/ 2. AfterColUpdate/ 3. BeforeUpdate or all of these occur?
1. BeforeColUpdate says after editing is completed in a cell, but before dates is moved from the cell to the DataGrid control's copy buffer.
2. AfterColUpdates says that after data is moved from a cell in the DataGrid control to the DataGrid control's copy buffer.
3. BeforeUpdate says after editing is completed in a record, but before data is moved from the DataGrid control's copy buffer to the ADO data control's copy buffer.
Comment