I have a Kendo grid and backend in ASP.WebApi
In Kendo Mvc there is the class DataSourceRequest
and with the extension ToDataSourceResult
you can filter your datasources with the parameters from the grid in the view.
Now i'm creating an application with HTML5 and Angular. For this solution i don't find a dll provided by Telerik.
Is there a way to easy take in the grid parameters (paging, sorting, filtering) and apply them to my IQueryable datasource?
ToDataSourceResult
or manually apply sorting, firltering and paging to your IEnumerable result. Btw sorting is applied always in grid on client side. – Gene R