Home › Forums › WinForms controls › Xceed Grid for WinForms › UpdateDetailGrids caused value to be reset › Reply To: UpdateDetailGrids caused value to be reset
or put this in you’r button event:
(Before you collaps/expand the detailrows)
if( gridControl1.CurrentRow != null && gridControl1.CurrentRow is Xceed.Grid.CellRow)
{
((Xceed.Grid.CellRow)gridControl1.CurrentRow).EndEdit();
}
Imported from legacy forums. Posted by C# (had 279 views)