Reputation: 9
I use Telerik RadComboBox with Checkbox enabled. When I check one item and click any where to lost focus, then again I select another items from same combobox then it display only first item text in combobox.
Can some one help me for this problem.
Upvotes: 0
Views: 1416
Reputation: 532
You probably use Filter also, that's why you face this problem. Add the property
AllowCustomText = "true"
e.x That works perfectly
<telerik:RadComboBox ID="id" runat="server" Width="60%" Skin="MetroTouch" CheckBoxes="true" Filter="Contains" CheckedItemsTexts="FitInInput" AllowCustomText="true">
</telerik:RadComboBox>
There is a solution found here
Upvotes: 2