Cell Update Event without mouse leave from the cell

Hi Sir/Madam

I have a question on the essential grid dropdownCell

Is it possible to trigger Cell Value updated event just after change the dropdown selection without mouse leave from the cell.

Yours,
Jasper

1 Reply

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();
}

Loader.
Up arrow icon