| froms = new string[] { "Craig", "Lowell", "Richard" }; |
| rcbFromFilter.DataSource = froms; |
| rcbFromFilter.DataBind(); |
| rcbFromFilter.Items.Add(new RadComboBoxItem("All", "-1")); |
Using the above code the "All" option is added to the bottom of the list. I need it at the top. I realize I could put it into the array but I will be binding to a database table so that isn't an option.
Thanks.