pashminakazi commented on issue #448: Assigning ArrayCollection to 
ADG.dataProvider
URL: https://github.com/apache/royale-asjs/issues/448#issuecomment-523807245
 
 
   https://paste.apache.org/t60p8
   
   In our application we are retrieving data from Java side as
   var arrDDResult:Array = e.result as Array;
   arrDGDataProvider = arrDDResult[0] as ArrayCollection;
   dg.dataProvider = arrDGDataProvider.getItemAt(0).source ;
   
   In Example
   var arrDDResult:Array = e.result as Array;          is replaced with
   
   [Bindable] public var data:Array =  new Array(["abc", "f","abc", "f","abc"]);
   var arrDDResult:Array = data as Array;
   
   So,its not populating data in AdvancedDataGrid
   please Replace e.result with suitable Data and then check this example
   

----------------------------------------------------------------
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