remove the ClearButton from the RadMultiColumnComboBox

1 Answer 4 Views
MultiColumnComboBox
fabrizio
Top achievements
Rank 2
Iron
Veteran
fabrizio asked on 12 Nov 2025, 09:03 AM
Good morning,
Is it possible to remove the ClearButton from the RadMultiColumnComboBox so that I can select and copy text into the RadMultiColumnComboBox's text field with ctl + c?
I have Telerik 2022 R3 SP1 and I can't figure out how to do it. It's easy with RadComboBoxes; is it possible that this isn't possible with the RadMultiColumnComboBox?

1 Answer, 1 is accepted

Sort by
1
Accepted
Stenly
Telerik team
answered on 12 Nov 2025, 09:13 AM

Hello Fabrizio,

To hide the remove button on each selected item, create an implicit Style that targets the SearchAutoCompleteBoxItem element. In the Style.Resources collection, define a new Style that targets the RadButton element and sets its Visibility property to Collapsed.

The following code snippet showcases this suggestion's implementation:

<Application.Resources>
    <Style TargetType="telerik:SearchAutoCompleteBoxItem">
        <Style.Resources>
            <Style TargetType="telerik:RadButton">
                <Setter Property="Visibility" Value="Collapsed"/>
            </Style>
        </Style.Resources>
    </Style>
</Application.Resources>

The produced result is as follows:

With this being said, could you give this suggestion a try?

Regards,
Stenly
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.

Tags
MultiColumnComboBox
Asked by
fabrizio
Top achievements
Rank 2
Iron
Veteran
Answers by
Stenly
Telerik team
Share this question
or