How to remove a column made in html from exporting to excel, without hiding the column. I used a custom jquery to export the table into an excel but i want to hide certain columns. Please guide me how can i achieve it
You should do something like this :
myTable.find('#columnHeaderId').css({ "width": "0px" });