我目前有一个 ASP.NET MVC 4 项目。除了这个项目,我还有一个单独的 ASP.NET WebAPI RESTFul 服务。
我正在尝试使用 read.URL(“restful 服务的路径”)将 Kendo Grid 绑定到数据源。我调用并返回 JSON,但它没有绑定到网格。
我不能使用 read.Action("Action","Controller") 因为我的 webapi 控制器不存在于同一个项目中?
任何帮助,将不胜感激。
谢谢。
我目前有一个 ASP.NET MVC 4 项目。除了这个项目,我还有一个单独的 ASP.NET WebAPI RESTFul 服务。
我正在尝试使用 read.URL(“restful 服务的路径”)将 Kendo Grid 绑定到数据源。我调用并返回 JSON,但它没有绑定到网格。
我不能使用 read.Action("Action","Controller") 因为我的 webapi 控制器不存在于同一个项目中?
任何帮助,将不胜感激。
谢谢。
Have you tried looking at the remote data binding example in the Kendo documentation?
Looking at it, your datasource would have define your read method like:
transport: {
read: "http://demos.kendoui.com/service/Northwind.svc/Orders"
},