Completed
Last Updated: 12 Apr 2016 10:56 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 07 Apr 2016 05:47
Category:
Type: Bug Report
0
FIX. RadCheckedDropDownList - ArgumentException when adding a range of strings
To reproduce:

List<string> items = new List<string>();
for (int i = 0; i < 5; i++)
{
    items.Add("Item"+i);
}
this.radCheckedDropDownList1.Items.AddRange(items);

Workaround: add a range of RadCheckedListDataItems
0 comments