AD
Administrator
Syncfusion Team
December 18, 2006 04:22 AM UTC
Hi Konstantin,
The following code snippet shows you to access the TableControl's MouseUp event in a grid.
//For maintablecontrol MouseUp event....
this.gridGroupingControl1.TableControl.MouseUp +=new MouseEventHandler(TableControl_MouseUp);
//For Pariticular table control MouseUp event,
this.gridGroupingControl1.GetTableControl("TableName").MouseUp +=new MouseEventHandler(TableControl_MouseUp);
Best Regards,
Haneef