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 2019/10/28 10:12:07 UTC

[GitHub] [royale-asjs] pashminakazi opened a new issue #532: 2d Array not working with Royale

pashminakazi opened a new issue #532: 2d Array not working with Royale
URL: https://github.com/apache/royale-asjs/issues/532
 
 
   In Flex we are using 2d Array like
   var arrDDResult:Array = e.result as Array;
   arrDGDataProvider = **arrDDResult[0][0]** as ArrayCollection; commented for royale
   dg.dataProvider = arrDGDataProvider as ArrayCollection;
   
   This is not working in Royale so we replace it with
   
   var arrDDResult:Array = e.result as Array;
   arrDGDataProvider = **arrDDResult[0]** as ArrayCollection;
   dg.dataProvider = arrDGDataProvider.getItemAt(0).source;
   
   But in some Cases **getItemAt** is throwing Error :
   ![image](https://user-images.githubusercontent.com/42200979/67670229-44217f00-f995-11e9-8f20-b238d98dc952.png)
   

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services