How to disable search option from multicolumncombobox

1 Answer 77 Views
MultiColumnComboBox
Manali
Top achievements
Rank 1
Manali asked on 12 May 2022, 06:40 AM
How to disable search option from multicolumncombobox

1 Answer, 1 is accepted

Sort by
0
Ivan Danchev
Telerik team
answered on 16 May 2022, 02:24 PM

Hello Manali,

To disable the search functionality in the MultiColumnComboBox, set the "Filter" option, handle the "filtering" event and prevent the event:

MultiColumnComboBox configuration:

.Filter("Contains")
.Events(ev => ev.Filtering("onFiltering"))

Event handler:

function onFiltering(e) {
	e.preventDefault();
}

Regards,
Ivan Danchev
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
Manali
Top achievements
Rank 1
Answers by
Ivan Danchev
Telerik team
Share this question
or