Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.

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