Shashikant Baravkar
Shashikant Baravkar

Reputation: 9

RadComboBox with Checkbox enabled - Showing only first checked Item even I select different item

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

Answers (1)

George Stavrou
George Stavrou

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

Related Questions