Is it possible to add an image to the selected item of the radcombobox?I added my image in the items.I want see both images and text in it.
I want the code in aspx.cs
RadComboBoxItem item = new RadComboBoxItem();
item.Text = "Layout1";
item.ImageUrl=@"\47.gif";
RadComboBox1.Items.Add(item);
RadComboBox1.DataBind();
I want the code in aspx.cs
RadComboBoxItem item = new RadComboBoxItem();
item.Text = "Layout1";
item.ImageUrl=@"\47.gif";
RadComboBox1.Items.Add(item);
RadComboBox1.DataBind();