This question is locked. New answers and comments are not allowed.
If everything is highlighted or selected and I tab out, I lose my search text. The selectedItem is still correct, but the search text is blank.
in my sample when I tab from rc1 to rc2, I would have to do the following code to replace the search text because tabbing clears it:
private void rc2_GotFocus(object sender, RoutedEventArgs e)
{
string si = rc1.SelectedItem.ToString();
rc1.SearchText = si;
}
in my sample when I tab from rc1 to rc2, I would have to do the following code to replace the search text because tabbing clears it:
private void rc2_GotFocus(object sender, RoutedEventArgs e)
{
string si = rc1.SelectedItem.ToString();
rc1.SearchText = si;
}
<telerik:RadAutoCompleteBox x:Name="rc1" Margin="5 0 0 0" TextSearchMode="StartsWith" SelectionMode="Single" GotFocus="rc1_GotFocus" AutoCompleteMode="SuggestAppend" Width="80" ></telerik:RadAutoCompleteBox><telerik:RadAutoCompleteBox x:Name="rc2" Margin="5 0 0 0" TextSearchMode="StartsWith" SelectionMode="Single" GotFocus="rc2_GotFocus" AutoCompleteMode="SuggestAppend" Width="80" ></telerik:RadAutoCompleteBox>