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?
I solved it by setting the page size inside the dataSourceBlock
dataSource: {
data: tempArray,
pageSize: 10
}