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,
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
Hello Ivan,
I tried setting up tooltip text to null inside the SummaryValueChanged event, but it is still reflecting.
Tooltip on my summary row is showing both way either the column is collapsed or columns is expanded(more than the column text width).
It will be more helpful if you can provide a sample of your working model.