dhiren9 wrote:
Doing it like this does not work:
<mx:DataGrid id="dg3" dataProvider="remoteTagInfo.getList
('ENG').result" width="100%">
</mx:DataGrid>
You could do this:
<mx:DataGrid id="dg3" dataProvider="remoteTagInfo.getList.result"
width="100%" creationComplete="remoteTagInfo.getList('ENG')">
</mx:DataGrid>Manish

