Completed
Last Updated: 14 Oct 2015 13:33 by ADMIN
ADMIN
Dimitar
Created on: 05 Oct 2015 06:33
Category:
Type: Bug Report
1
FIX. RadDropDownList - the autocomplete does not work when some text is pasted.
To repeoduce:
- Set the AutoCompleteMode to suggest and paste some text in the drop down list.

Workaround:
protected override void OnLoad(EventArgs e)
{
    base.OnLoad(e);
    radDropDownList1.TextChanged += radDropDownList1_TextChanged;
}
void radDropDownList1_TextChanged(object sender, EventArgs e)
{
    this.radDropDownList1.DropDownListElement.AutoCompleteSuggest.HandleAutoSuggest(this.radDropDownList1.Text);
}
0 comments