How do I get json data from a datatable with binary data source?

I have a datatable loaded from an excel spreadsheet and I’m trying to get the data in a JSON format:

var dtable = webix.ui({
    id:"dt",
    view:"datatable", 
    excelHeader:true, 
    url:"binary->https://docs.webix.com/samples/60_pro/10_viewers/files/data.xlsx@Data[1-10]",
    on:{
      onAfterLoad:function(){
        console.log($$("dt").serialize());
      }
    },
});

The result comes as as an ArrayBuffer, and I’m not sure what to do with it :frowning:

Thank you

Hello,

Please, see the answer here: How can I serialize data from a datatable with binary data source?