How can I clear the search box on a RadComboBox. The only way I can clear the search text is when I use the keyboard to do so.
This is how I am defining the combo box.
<controls:RadComboBox
DisplayMemberPath="FullName"
DropDownButtonStyle="{StaticResource ContactDropDownStyle}"
HorizontalOptions="Fill"
IsClearButtonVisible="False"
IsDropDownClosedOnSelection="False"
IsEditable="True"
IsFilteringEnabled="True"
ItemsSource="{Binding Contacts, Mode=TwoWay}"
Loaded="OnComboBoxLoaded"
Margin="15"
OpenOnFocus="True"
Placeholder="Select Contacts"
PlaceholderColor="{StaticResource White}"
SearchTextPath="FullName"
SelectionChanged="OnContactSelectedChanged"
SelectionMode="Multiple"
TextColor="{StaticResource White}"
Unfocused="ContactComboBox_OnUnfocused"