I have a kendoGrid and i would like to get the JSON out of it after filtering and sorting how do I achieve this?
kendoGrid
JSON
something like the followi
I think you're looking for
var displayedData = $("#YourGrid").data().kendoGrid.dataSource.view()
Then stringify it as follows:
var displayedDataAsJSON = JSON.stringify(displayedData);
Hope this helps!