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:
[email protected]


With regards,
Apache Git Services

Reply via email to