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,

Parents
  • 1700
    Offline posted

    Hello Sachin, 

    I have tested this on my side with setting the tooltip text of the summary directly to null as well as setting the tooltip text to null inside the SummaryValueChanged event, however on my side the tooltips are not present unless the column is not wide enough to show the actual summary, then it appears even though it is set to null. I believe that the tooltip is actually shown for the UI element that is used for the summary, instead of the actual summary.

    Could you please try resizing the column to fit the contents of the summary? By doing this you would ensure that a tooltip is not displayed.

    Regards,
    Ivan Kitanov

Reply Children