Completed
Last Updated: 20 Jul 2016 07:48 by ADMIN
ADMIN
Dimitar
Created on: 21 May 2015 06:37
Category:
Type: Bug Report
2
FIX. RadCheckedDropDownList - ArgumentOutOfRangeException when the auto suggest is turned on and the data source is reset.
To reproduce:
- Use the mouse to select an item from the drop down list.
- Using the keyboard, type a letter  and use the mouse to select one more item.
- Change the DataSource with a button.

Workaround:
radCheckedDropDownList1.DataSource = null;
radCheckedDropDownList1.AutoCompleteMode = AutoCompleteMode.None;

radCheckedDropDownList1.ValueMember = "Id";
radCheckedDropDownList1.DisplayMember = "Value";
radCheckedDropDownList1.CheckedMember = "IsSelected";
radCheckedDropDownList1.DataSource = list;

radCheckedDropDownList1.AutoCompleteMode = AutoCompleteMode.Suggest;
0 comments