I have a grid with a column set to
gridColumn.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.DropDownList;
and an associated value list.
What I'd like to do is attach a tooltip to each of the added ValueListItem.
Is there a way to do this?
A small addition.
Using the UIElementViewer I found that the ValueList drop down consists of the following hierarchy of UI elements
ValueListDropDownUIElement
ValueListItemContainerUIElement
ValueListItemUIElement
TextUIElement
What I need to know is how to get to these UI elements at run time. If I can get here I can set ToolTip properties on the TextUIElement but I can't seem to find a way to get to this element.
Hum, Since I've not had any responses to this question I assume no one knows how to get to these UIElements at run time.
Hi Neil,
I think you would have to use a CreationFilter for this. But I'm not sure that will work for a ValueList.
Is there any particular reason that the ValueListItem does not support a Tooltip or Detail property? This seems like a common usage case...
3,5 years later, still no simple solution for this?
On easy solution would be to use an UltraDropDown or UltraCombo instead of a ValueList. The UltraDropDown is essentially like a grid, and each row as a ToolTipText property.