Posted 13 February 2018, 7:15 am EST
In My Spread Js sheet , I do not want to export first two columns (one for serial number and other for check box) how can i achieve this.
I am using gc.spread.sheets.all.11.0.0.min.js and gc.spread.excelio.11.0.0.min.js
let excelIo = new GC.Spread.Excel.IO();
var json = this.spread.toJSON({
includeBindingSource: true,
rowHeadersAsFrozenColumns: true,
columnHeadersAsFrozenRows: true,
ignoreFormula: false,
ignoreStyle: false
});
let currentSheet = this.spread.getActiveSheet()
excelIo.save(json, function (blob: any) {
FileSaver.saveAs(blob, currentSheet );
});
