On Wed, Jun 11, 2014 at 8:50 AM, Knut Staring <knu...@gmail.com> wrote:

>   $.getJSON( url, function( json ) {
> console.dir(json);
>   });
>

$.ajax({
  url: URL,
  dataType: 'json'
}).done(function(data) {
  $.each(data.organisationUnits, function(idx) {
    console.log("root" + idx + ": " + this.id);
  })
});

Something like that could work, it returns an array of orgUnits

--
Morten
_______________________________________________
Mailing list: https://launchpad.net/~dhis2-devs
Post to     : dhis2-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-devs
More help   : https://help.launchpad.net/ListHelp

Reply via email to