2012-04-15 12:13:37 +00:00
|
|
|
/*
|
|
|
|
This is probably the easiest way of displaying a complex data structure...
|
|
|
|
*/
|
|
|
|
|
|
|
|
Ox.load('UI', function() {
|
|
|
|
|
2016-01-30 07:16:03 +00:00
|
|
|
Ox.getJSON(Ox.PATH + 'Geo/json/Geo.json', function(data) {
|
2012-04-15 12:13:37 +00:00
|
|
|
|
|
|
|
Ox.TreeList({data: data}).appendTo(Ox.$body);
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2016-01-30 07:16:03 +00:00
|
|
|
});
|