AD
Administrator
Syncfusion Team
September 25, 2006 06:18 AM UTC
Hi James,
This is by design. If you want to disappear the edit icon for every cell movement, you need to call the Record.EndEdit method in TableControlCurrentCellMoving event. Below is a code snippet
private void TableControlCurrentCellMoving(object sender, GridTableControlCurrentCellMovingEventArgs e)
{
Record rec = e.TableControl.Table.CurrentRecord;
if( rec != null)
{
rec.EndEdit();
}
}
Let me know if this helps.
Best Regards,
Haneef