* Format-specific configuration (default class, content, mimeType, etc.)
* @memberof TableExport.prototype
* XLSX (Open XML spreadsheet) file extension configuration
* @memberof TableExport.prototype
buttonContent: 'Export to xlsx',
mimeType: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
buttonContent: 'Export to xlsm',
mimeType: 'application/vnd.ms-excel.sheet.macroEnabled.main+xml',
buttonContent: 'Export to xlsb',
mimeType: 'application/vnd.ms-excel.sheet.binary.macroEnabled.main',
* XLS (Binary spreadsheet) file extension configuration
* @memberof TableExport.prototype
buttonContent: 'Export to xls',
mimeType: 'application/vnd.ms-excel',
enforceStrictRFC4180: false
* CSV (Comma Separated Values) file extension configuration
* @memberof TableExport.prototype
buttonContent: 'Export to csv',
enforceStrictRFC4180: true
* TXT (Plain Text) file extension configuration
* @memberof TableExport.prototype
buttonContent: 'Export to txt',
enforceStrictRFC4180: true
//////////////////////////////////////////
// Configuration override example
//////////////////////////////////////////
/* Change the CSV (Comma Separated Values) `mimeType` to "application/csv" */
TableExport.prototype.formatConfig.xlsx.mimeType = "application/csv"