type String

If set, the data source will use a predefined transport and/or schema.

The supported values are:

Example - enable OData support

<script>
var dataSource= new kendo.data.DataSource({
  type: "odata",
  transport: {
    read: "https://demos.telerik.com/kendo-ui/service/Northwind.svc/Orders"
  },
  pageSize: 20,
  serverPaging: true
});
dataSource.fetch(function() {
/* The result can be observed in the DevTools(F12) console of the browser. */
  console.log(dataSource.view().length); // displays "20"
});
</script>
In this article