$('#Name).kendoAutoComplete({
dataTextField: "customerName",
filter: "startswith",
dataSource: orderModelDS.ordersSource
});
This is the code where I am using autocomplete as a custom filter on a kendoGrid. In the dataSource there is data with same customerName. So the autocomplete is also showing duplicate values.
If there is multiple data with same customerName, autocomplete list should show the customerName only once because the rest are duplicates. But it is not happening autocomplete list is showing the same name multiple times.
Thanks in advance for any help.