forked from 0x2620/oxjs
add ipv4 map example
This commit is contained in:
parent
21fb4aecc0
commit
d5e2fcc1c2
15 changed files with 1488 additions and 0 deletions
13
examples/lists/json/js/example.js
Normal file
13
examples/lists/json/js/example.js
Normal 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);
|
||||
|
||||
});
|
||||
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue