This is a migrated thread and some comments may be shown as answers.

Is it possible to add clientside tooltip to RadDropDownList Item?

0 Answers 66 Views
DropDownList
This is a migrated thread and some comments may be shown as answers.
Emo
Top achievements
Rank 1
Emo asked on 12 Jan 2018, 07:45 AM

Hi,

First thanks for your great support.

Currently I want to fill RadDropDownList control with items from the client side.

I am able to add them, but I am not able to add a tool tip against them. Is it possible this to be achieved?

 

var radDropDown = $find("<%= ddlOptions.ClientID %>");
var item = new Telerik.Web.UI.DropDownListItem();
item.set_value("1");
item.set_text("Option 1");

//maybe in some way here I need to add a tooltip option

radDropDown .get_items().add(item);

 

No answers yet. Maybe you can help?

Tags
DropDownList
Asked by
Emo
Top achievements
Rank 1
Share this question
or