Search code examples
jqueryasp.net-mvc-4kendo-autocomplete

How to get top(n) from kendo AutoComplete client side when filtering


I have the below autocomplete set to static dataSource

$("#search").kendoAutoComplete({
    dataTextField: AutoCompletedataTextField,
    filter: "startswith",
    ignoreCase: true,
    pageSize: 10,
    dataSource: tempArray,           
});

I need to get only top 10 items to be displayed in the control. how can I achieve this?


Solution

  • I solved it by setting the page size inside the dataSourceBlock

     dataSource: {
        data: tempArray,
        pageSize: 10
    }