Ok, I got it working. Pretty ugly with a brute force conversion of the returned Object to an Array with:
- var apparr = new Array();
- for (i = 0; i < apps.length; i++) {
- apparr.push(apps[i]);
- }
But this allows me to sort the resulting Array.
Thanks for all your help with this.