Hi,
I have aDropdownList and its populating data using DataManager. I have used the below options. But for some reason, the dropdownlist filter input text control is disabled and users are unable to type anything.
allowFiltering: true,
filterType: 'contains',
ignoreCase: trye,
showClearButton: true,
filtering: function(e){
let query = new Query();
//frame the query based on search string with filter type.
query = (e.text != "") ? query.where("Country", "startswith", e.text, true) : query;
//pass the filter data source, filter query to updateData method.
e.updateData(searchData, query);
}
below is the screenshot of the dropDownlist with disabled input. Is there any option to enable it?