ST
stanleyj
Syncfusion Team
February 25, 2006 02:13 PM UTC
Hi Klaus,
Try catching the delete key in TableControlKeyDown.
if(e.Inner.KeyCode == Keys.Delete)
{
Record rec = e.TableControl.Table.CurrentRecord;
rec.Delete();
}
You can call it as pencil, there is no special event to raise when click on the pencil. You can try capturing the click of the row header of the editing record.
Best regards,
Stanley