E
egarcia
Guest
Hello, The support for OData and Generic REST (READ only) as a Data Provider was introduced in KUIB 2.0. Is it possible for you to upgrade to KUIB 2.0? For KUIB 1.1, you can write custom code to set the columns and the dataSource properties of the grid component: For example on a view created using the blank template, you could add the following to the onShow() function: delete $scope.grid0.options.columns; $scope.grid0.options.dataSource = new kendo.data.DataSource({ transport: { read: { url: " demos.telerik.com/.../products", dataType: "jsonp" } }, pageSize: 10 }); However, please notice that you would still need to define a data source (of JSDO type) to create the grid to the view. The usage of client or server side filtering depends on the usage of the serverFiltering properties of the DataSource. Link: docs.telerik.com/.../datasource I hope this helps.
Continue reading...
Continue reading...