oxjs/examples/lists/json/js/example.js
2016-01-30 12:46:03 +05:30

13 lines
242 B
JavaScript

/*
This is probably the easiest way of displaying a complex data structure...
*/
Ox.load('UI', function() {
Ox.getJSON(Ox.PATH + 'Geo/json/Geo.json', function(data) {
Ox.TreeList({data: data}).appendTo(Ox.$body);
});
});