How to disable filtering in kendo autocomplete UI? I am getting 5 records on search but only matching records are shown in autocomplete popup even though I haven't used filters.
scope.autocompleteOptions = {
dataTextField: 'description',
minLength:1,
dataSource:{
data: locationsData,
group:'provider',
serverFiltering:false
},
template: kendo.template($('#roc-map-places-template').html())
}
Any ideas?
Thanks in advance.
kendo ui autocomplete. I am unable to disable filtering inkendo autocomplete. - Kiran PawarserverFiltering: false. My concern was to disable all type of filtering. I have read in documentation thatfilter: 'startswith'is default filtering forkendo autocomplete UIand i have to disable it. - Kiran Pawar