I have a telerik's radcombobox
like below:
<telerik:RadComboBox x:Name="cbCustomerName"
Grid.Row="1"
Grid.Column="1"
Grid.ColumnSpan="3"
Margin="0 0 0 10"
DisplayMemberPath="FullName"
IsEditable="True"
IsFilteringEnabled="True"
ItemsSource="{Binding Customers}"
OpenDropDownOnFocus="True"
SelectedValuePath="CustomerId"
SelectionChanged="cbCustomerName_SelectionChanged"
Text="{Binding CurrentCustomer.FullName,
UpdateSourceTrigger=LostFocus}" />
When I type something in the textbox that is not in its items list and then go to some other control, it clears the text in it, which I don't want.
I have checked all properties and couldn't find anything to retain it after losing focus.
Please help if anyone knows about this.
I know this question is old but I figured I'd post a solution in case anyone else has this issue. If you set the "IsTextSearchEnabled" property to "False", it allows custom text and doesn't clear it when the RadComboBox loses focus.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With