I am doing one project using kendo controls. In this grid export functionality is main issue. I am trying this it’s working fine, but when click on button only first page data is exported and footer also exported to excel. But i want to export all (rows) records in grid to excel
And my Code:
$(“#btnExport”).click(function(e) {
window.open(‘data:application/vnd.ms-excel,’ + $(‘#grid’).html());
e.preventDefault();
});