load external json file with webix.DataCollection!?

Hello.
I hope you are all well.
My question is: I have an external json file on server which I would like to load And just only have this json and handle this further… But is this possible with the webix.DataCollection?

And/or how to archive this?

Thank you

Michael

Hello @Michael,
Basically, you can load the data in the DataCollection and just parse the data when needed. By default, the data type is set to “json” and you do not need to set it if the data comes from the server in the JSON format
Please check the next snippet:
https://snippet.webix.com/lv4k3ste
Here is documentation:
https://docs.webix.com/api__link__datacollection_load.html

Thank you