Export to excel first row is coming as filename
Export to excel first row is coming as filename
Developer222
Posts: 1Questions: 1Answers: 0
I am using this code for export link on grid.
buttons: [{ extend: 'excel', text: 'Export to Excel', filename: 'My Report1' }],
But problem is that, when I am exporting data to excel, First Row has "Index" text appearing,
I want to Remove first cell from excel.
This discussion has been closed.
Answers
See if this example. I think you want to set the
title
option tonull
as documented inbuttons.exportInfo()
.Kevin