add more examples

This commit is contained in:
rolux 2012-04-15 14:13:37 +02:00
commit c7e89cf73a
6 changed files with 128 additions and 0 deletions

View file

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