Completed
Last Updated: 27 Sep 2018 06:56 by Dimitar
ADMIN
Dimitar
Created on: 06 Sep 2018 11:07
Category: GridView
Type: Bug Report
0
FIX. RadGridView - the changes are not committed to the data set when the new row is focused.
Use attached to reproduce.
- Edit random cell and press Enter.
- Check the CellValueChanged event handler, the changes variable is null.

This will work if you comment the OnShown method.

Workaround:
IEditableObject editbaleObject = radGridView1.CurrentRow.DataBoundItem as IEditableObject;
if (editbaleObject != null)
{
     editbaleObject.EndEdit();
}
Attached Files:
0 comments