Export to excel first row is coming as filename
Export to excel first row is coming as filename
![Developer222](https://secure.gravatar.com/avatar/d3f1e705e5498c259e19fe25c6c74e68/?default=https%3A%2F%2Fvanillicon.com%2Fd3f1e705e5498c259e19fe25c6c74e68_200.png&rating=g&size=120)
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