Load nested json in datatable

Hello ,

i’m having a hard time figuring out how to load nested JSON in to datatable.
I’ve been trying to use a function in a column template like

template: function(obj){ return … } , but it doesnt seem to work.

here is my snippet : http://webix.com/snippet/0ef33776

( just a JSON sample that i’ve wrote http://myjson.com/31eyg )

Thank you for your time.

The ui.datatable expects a JSON with the plain structure. You can define your own loading pattern using the custom proxy.

Here’s a quick sample: http://webix.com/snippet/d714fcb4

Thank you , that helped a lot !