We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

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.
Live Chat Icon For mobile
Up arrow icon