Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
110
How to disable or remove tooltip from summary row in ultragrid?
posted

Hello,

I have an ul on which i have added a summary row-:

var s = ultraGrid.DisplayLayout.Bands[0].Summaries.Add(var.Key, SummaryType.Custom, respectiveCalculator, var, SummaryPosition.UseSummaryPositionColumn, var);

s.DisplayFormat = displayformat;

s.Appearance.TextHAlign = Infragistics.Win.HAlign.Right;

s.ToolTipText = null;

I have set the tooltip text to null here but still when my grid is loaded and i hover on summary row cells value, tooltip appears.

I have also tried setting this.ultraGrid.DisplayLayout.Override.TipStyleCell = TipStyle.Hide; on initialisation of grid.It is only hiding the tool tip for the whole grid except summary row.

How can i disable, delete or hide tooltip from summary row?

Thanks,