You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@royale.apache.org by GitBox <gi...@apache.org> on 2022/01/04 04:21:43 UTC

[GitHub] [royale-compiler] greg-dove commented on issue #205: sortOn is not working in type of ArrayCollection which works in Flash

greg-dove commented on issue #205:
URL: https://github.com/apache/royale-compiler/issues/205#issuecomment-1004519329


   @ekumar2 Can we consider this closed? As Yishay said, this does appear to be invalid:
   `var arr:Array = new ArrayCollection()`
   
   if it was instead:
   ```
   var arr:Array = [];
   arr.push({label:"Z", data:"first"});
   arr.push({label:"C", data:"second"});
   arr.push({label:"E", data:"third"});
   arr.sortOn('label');
   ```
   ...and the results were not correct in this case, then please confirm that is the issue, thanks.
   
   


-- 
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-unsubscribe@royale.apache.org

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