Hi,
I making a simple autocomplete with remote json data, but it's not working, any idea?
thanks.
I making a simple autocomplete with remote json data, but it's not working, any idea?
thanks.
var dataSource = new kendo.data.DataSource({ transport: { read: { dataType: "json", } } }); $("#input_customer").kendoAutoComplete({ dataTextField: "title", filter: "contains", minLength: 2, dataSource:dataSource });