GGC: No TableControlMouseUp event

I am using GridGroupingControl
What can I do if I need processing TableControlMouseUp? There is a TableControlMouseDown event in GGC, but no TableControlMouseUp.

1 Reply

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

Loader.
Up arrow icon