Hello, i would like to make list to fill its data from an URL, but I am not able to do that, i tried to follow documentation but I have only found example of loading local data.
That is working, but i would like to use ajax datasource, http://dojo.telerik.com/@andrea/uvanE
That is the json data that correspond to the execution of the MVC controller I have server side: http://dojo.telerik.com/@andrea/uvanE/2
that is my try to use the remote data http://dojo.telerik.com/@andrea/uvanE/3
the json data have been generated by the following server code, and i do not know if it is in the correct format that the list expect
[Authorize] [HttpPost] public ActionResult GetShippers([DataSourceRequest] DataSourceRequest request) { return Json(new string[] { "A", "B", "C" }.ToDataSourceResult(request)); }