CB
Clay Burch
Syncfusion Team
March 16, 2010 04:14 PM UTC
Try handling the CurrentCellCloseDropDown event and call CurrentCell.ConfirmChanges in the event handler.
void grid_CurrentCellCloseDropDown(object sender, Syncfusion.Windows.Forms.PopupClosedEventArgs e)
{
GridControlBase grid = sender as GridControlBase;
grid.CurrentCell.ConfirmChanges();
}