Kendo UI for Angular2 Grid Web API databinding

1.7k views Asked by At

I see in the KendoUI for Angular 2 sample (http://www.telerik.com/kendo-angular-ui/components/grid/data-binding/) the grid binds to an oData service. Is there a way to bind to a plain Web API restful service instead?

My back-end is an ASP.Net Core (full framework) service, which does not support oData services yet (based on this: https://github.com/OData/WebApi/issues/772)

1

There are 1 answers

4
knikolov On

That implementation is based on Angular's Http service, so you should be able to do the same with any REST end point. The Kendo UI Grid does not really care about the particular endpoint, and just waits for the JSON data to be passed.