Expand my Community achievements bar.

Radically easy to access on brand approved content for distribution and omnichannel performant delivery. AEM Assets Content Hub and Dynamic Media with OpenAPI capabilities is now GA.

Data Grid Mania!

Avatar

Level 1
I need help with my data grid control. It doesn't display any
data when it gets data. It is getting data in this format:

<images>

<image><image_name></image_name><image_url><image_url><keywords></keywords></image>

</images>



and the component is this:

<mx:DataGrid x="10" y="10" width="640" height="140"
dataProvider="{imageReturn.lastResult.images}"
id="communityImages">

<mx:columns>

<mx:DataGridColumn headerText="Image"
dataField="{image.image_url}">

</mx:DataGridColumn>

<mx:DataGridColumn headerText="Name"
dataField="{image.image_name}"/>

<mx:DataGridColumn headerText="Keywords"
dataField="{image.keywords}" visible="false" />

</mx:columns>

</mx:DataGrid>



What's Wrong? Help Please!
0 Replies