Completed
Last Updated: 24 Sep 2024 07:21 by ADMIN
Release 2024.3.806 (2024 Q3)
Martin Ivanov
Created on: 05 Mar 2024 09:41
Category: AutoCompleteBox
Type: Bug Report
1
AutoCompleteBox: SearchText property value is not cleared on SelectionMode changed

When the SelectionMode of RadAutoCompleteBox is changed, the search text is cleared. However, this clears only the Text property of the underlying TextBox element. The SearchText property of the control is not cleared.

To work this around, you can manually set the SearchText after setting the SelectionMode.
this.autoCompleteBox.SelectionMode = AutoCompleteSelectionMode.Multiple;
this.autoCompleteBox.SearchText = null;

0 comments