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
1725
Adding a tooltip to ValueListItems
posted

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?

Parents
No Data
Reply
  • 1725
    posted

    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.  

Children