Completed
Last Updated: 23 Jul 2015 09:42 by ADMIN
ADMIN
Dimitar
Created on: 21 Jul 2015 08:23
Category:
Type: Bug Report
1
FIX. RadCheckedDropDownList - when the text is change the items are not synchronized.
To reproduce:
- Bind the control to some data
- Change the text like this:
private void radButton1_Click(object sender, EventArgs e)
{
    radCheckedDropDownList1.Text = "All;Privileged;";
}

- Open the drop down.

Workaround 
- Check the items directly:
private void radButton1_Click(object sender, EventArgs e)
{
    radCheckedDropDownList1.Items[0].Checked = true;
    radCheckedDropDownList1.Items[2].Checked = true;
}
0 comments