ekumar2 opened a new issue #205:
URL: https://github.com/apache/royale-compiler/issues/205


   `var arr:Array = new ArrayCollection();
   arr.push({label:"Z", data:"first"});
   arr.push({label:"C", data:"second"});
   arr.push({label:"E", data:"third"});
   
   arr.sortOn('label');
   
   expected output -
   arr.push({label:"C", data:"second"});
   arr.push({label:"E", data:"third"});
   arr.push({label:"Z", data:"first"});
   `
   
   The sortOn works on ArrayCollection and it sorts the object of Arrays based 
on property passed.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@royale.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to