My flex data grid has a XMLListCollection as its data provider.
AlivePDF's Grid expects data grid's data provider to be an array.
Is there a way to PDF this table without going through each and every XML node and populating an array of objects to feed to AlivePDF's Grid?
Are there any other better solutions that I can try out to covert this table to PDF?
Thanks!
ListCollectionView
(XMLListCollection
base class) has toArray() method
So, just new Grid(dataProvider.toArray(),...)