hi,
i am new to kendo ui..
i want to set up an kendo data source for a remote server..
as per the kendo ui datasource documention..
how do we create the remote endpoint for the server??
plz give the step by step instruction to create it..
i am new to kendo ui..
i want to set up an kendo data source for a remote server..
as per the kendo ui datasource documention..
here url="http://demos.kendoui.com/service/products/create", is a remote end point.var dataSource = new kendo.data.DataSource({ transport: { // make JSONP request to http://demos.kendoui.com/service/products/create create: { url: "http://demos.kendoui.com/service/products/create", dataType: "jsonp" // "jsonp" is required for cross-domain requests; use "json" for same-domain requests }, });
how do we create the remote endpoint for the server??
plz give the step by step instruction to create it..