How to get the displayed data of KendoGrid in json format?
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!