how to Disable the CellTipText at the Summary Row of the GGC?

hi,

how to Disable the CellTipText or make it invisible at the Summary Row of the GGC?

regards,
lim


2 Replies

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



AA aa May 16, 2008 03:09 AM UTC

It's work.

Thanks!


Loader.
Up arrow icon