Posted 17 June 2018, 3:17 am EST
The question is - does ExcelIO support XLS? It works with XLSX files. This is the code we are using:
var excelIO = new GC.Spread.Excel.IO();
function loadSpread(json) {
$timeout(function(){
scope.element.spread.fromJSON(json);
scope.element.spread.refresh();
});
}
excelIO.open(blob, loadSpread, function (message) {
console.log(message);
});
