ASP.NET ComboBox - Server-Side API - Tooltips



The ComboBox and its items provide support for tooltips, which can be used to provide additional information for end users.
To add a tooltip to the input field of a ComboBox, use the ToolTip property of the ComboBox class.
To add a tooltip to an item, use the ToolTip property of the ComboBoxItem class.

When populating the ComboBox from a data source you can use the ItemDataBound event to assign a tooltip
to each individual item from the list (as we did in this sample).



« Back to examples