Kendo UI AutoComplete datasource transport reads only once
问题 I'm becoming crazy with Kendo UI AutoComplete component. I'm using my own functions to access data with jQuery, so I have to set the AutoComplete dataSource.transport.read as a function. The code is something like this. minLengthAtocomplete = 3; $('#autocomplete').kendoAutoComplete({ minLength : 3, filter : "contains", dataValueField : "key", dataTextField : "value", dataSource : new kendo.data.DataSource({ transport : { read : _OnTransportRead }, schema : { /* object schema */ } }) });