How to add an additional RadComboBoxItem to data bound RadComboBox?

gsb picture gsb · Jul 1, 2011 · Viewed 14.6k times · Source

I am using Telerik controls on my aspx page. I have cascading radcombo boxes(dropdown box). I have 3 of them on my page. the values of 2nd rad combo box depends on the 1st and the 3rd depends on selection of 2nd. The thing is that i want to include a select all option in the 3rd dropdown. The values are coming from a database i.e all of them are data bound. How can i add a 'select all' option in the combo boxes? i tried it using parameters.insert function in c#, but does not work. i tried adding in the control itself but not showing up with that either.

Can someone please help?

Answer

James Hill picture James Hill · Jul 1, 2011

Simple create a new RadComboBoxItem and add it to the RadComboBox. See example below.

RadComboBoxItem myItem = new RadComboBoxItem();
myItem.Text = "Select All";
myItem.Value = "SelectAll";

//Add it as the last item
myComboBox.Items.Add(myItem);

//OR

/Add it as the first item
myComboBox.Insert(0, myItem);

EDIT

Make sure you're adding the item after the control has been bound by putting our code in the DataBound event of the control:

protected void RadComboBox1_DataBound(object sender, EventArgs e) 
{ 
    var combo = (RadComboBox)sender; 
    combo.Items.Insert(0, new RadComboBoxItem("Select All", "SelectAll")); 
}

Here's some documentation from Telerik that explains how to do this properly: http://www.telerik.com/help/aspnet-ajax/combobox-insert-default-item-when-databinding.html.

NOTE: If the above method does not work, make sure you have set myComboBox.AppendDataBoundItems = true.