AD
Administrator
Syncfusion Team
March 22, 2005 06:24 PM UTC
Make sure renderer.NotifyCurrentCellChanging() is called before you save the change, and only save it if this call returns true (otherwise CurrentCellValidating failed...).
KJ
Kenneth Johnson
March 22, 2005 07:54 PM UTC
When I add NotifyCurrentCellChanged() to OnSaveChanges() event, the grid''s CurrentCellChanged event is not fired until the user moves from the calendar cell to another. When I add it to the cell control''s ValueChanged event, CurrentCellChanged event fires correctly, but the value that is displayed in the cell is today''s date. The cell value is set in OnSaveChanges().
AD
Administrator
Syncfusion Team
March 22, 2005 08:02 PM UTC
Try calling CurrentCell.ConfirmChanges when you want to immediately save the changes.