JJ
Jisha Joy
Syncfusion Team
May 15, 2008 08:43 AM UTC
Hi Lim,
Thank you for using Syncfusion products.
Please try to handle the TableControl.ActivateToolTip event of GridGroupingControl and Cancel it. Below is the code snippet:
this.gridGroupingControl1.TableControl.ActivateToolTip +=new GridActivateToolTipEventHandler(TableControl_ActivateToolTip);
void TableControl_ActivateToolTip(object sender, GridActivateToolTipEventArgs e)
{
e.Cancel = true;
}
Please try this and let me know if this helps.
Regards,
Jisha