I am using Infragistics.Win.Tooltip. When an image is added to it, the tooltip text gets cut. However it works fine when there is no image.
Hello Jezze,
I created the following case for you: 'CAS-91653-NHT98V' and will update you through it.
Sure, here is a small example.
Could you please provide if possible a small sample project with your scenario for me to take a look at it.
Hi Mike,
I found this old topic by searching for a similar Problem. I have an UltraTree in Grid style, which displays booleans as descriptive text with preceding Icon.
Here is some code how I setup the column.
UltraTreeNodeColumn column = columnSet.Columns["ColumnKey"]; ValueList valueList = new ValueList(); valueList.DisplayStyle = ValueListDisplayStyle.DisplayTextAndPicture; ValueListItem valueFalse = valueList.ValueListItems.Add( false, "Advanced description for false"); ValueListItem valueTrue = valueList.ValueListItems.Add( true, "Advanced description for true"); valueFalse.Appearance.Image = Resources.FalseImage16; valueTrue.Appearance.Image = Resources.TrueImage16; column.ValueList = valueList;
The problem seems to be, that the image is not part of the content of the cell and therefore the tooltip is cut by the size of the image (16 × 16 pixel). An other relating problem is, that auto-sizing of the column via PerformAutoResize() or by double clicking the header's right edge will also cut the cell size.
I hope you can help me. I'm using version 11.2.20112.2004 of Infragistics. Thanks in advance.
Are you using the latest hot fix? That sounds like a bug that was fix a long time ago.