Hello.
I am using Export to Excel functionality.
Is there a way of adding page numbers to the excel generated from the grid?
I have tried the following but it does not work.
function excelExport(e) {
var sheet = e.workbook.sheets[0];
sheet.pageNumber = true;
}
Or is there any property which can be set when defining the Excel?
.Excel(excel => excel
.FileName("Users.xlsx")
.Filterable(true)
.ProxyURL(Url.Action("Excel_Export_Save", "UserAndGroup"))
)
Thanks