I'm trying to create a Comboxbox with server side paging and a custom transport read, i can't get it to work so i made a small ex-sample.
If you run the example it isn't possible to scroll "below" the already loaded items, so there isn't another read to get the next 10 items
https://dojo.telerik.com/eHaJU/5
$("#orders").kendoComboBox({ dataTextField: "text", dataValueField: "value", dataSource: { serverPaging: true, schema: { data: "data", total: "total" }, pageSize: 10, transport: { read: function(options) { var data = getData(options.data.page); options.success(data); } }, update: function() {} }});function getData(page){ var dataArr = []; for (var i = 0; i < 10; i++) dataArr.push({ text: "Item " + (i + 1) + " on page " + page, value: 1}); return {data: dataArr, total: 100};}How can I make this work? Thanks in advance.