Posted 22 December 2022, 4:55 am EST - Updated 22 December 2022, 5:07 am EST
Hi we store excel files as bytes in our mongodb. I have a working code to construct workbook instance from this byte array using excelIO.open() api. Now with SpreadJS 16 I want to do the same with gc.spread.sheets.io.16.0.0.min.js library. Can you please give me some examples which I can refer. All the examples I found was about creating spread instance from file. I need example which generates spread instance from blob. Below is the current code which uses excelIO and fromJson methood of spread instance
[code] excelIO.open(blob, function (json) {
spread.fromJSON(json);})[/code]

