I want to make a Grid where i have a list of items and each item has an image. Each item an the image of each item is loaded from a Web Services.
I manage to load each of the item name in the grid and now i want to load each image, but i don't know how to do this.
I load the data by a List Provider and i can load the image url or the image object directly but i don't know what to put in the xml file.
I have this in the XML:
<scrollPane >
<list>
<_renderer><![CDATA[
<listitem>
<picture>${vType}.png</picture>
<textarea>${sTitle}</textarea>
</listitem>
]]></_renderer>
<_items>@{lMedias}</_items>
</list>
</scrollPane>
It only works if the Image are preaviously loaded in my resource folder. Anyone know how to do this?
Thanks, AR

