TableExport icon indicating copy to clipboard operation
TableExport copied to clipboard

How to have Header of xlsx format Bold?

Open Harri266 opened this issue 7 years ago • 0 comments

Hi All,

I am using following code to download the excel file:

var table: any = $( "#"+tableId +' table')[1]; var instance = new TableExport(ExportButtons, { formats: ['xls'], exportButtons: false, filename: fileName, ignoreCols: colIgnore, });

var exportDataXLS = instance.getExportData()[table.id]['xls']; instance.export2file(exportDataXLS.data, exportDataXLS.mimeType, exportDataXLS.filename, exportDataXLS.fileExtension); }, 500);

Harri266 avatar Jan 31 '18 06:01 Harri266