我有以下 rss,我想将标题和图像绑定到 spark datagrid
<item>
<title>LOS ANGELES (AP) — Michael Jackson&#39;s doctor was quietly freed from jail on Monday, two years after he was convicted of killing the pop superstar with an</title>
<pubDate>Tue, 29 Oct 2013 04:34:38 GMT</pubDate>
<guid isPermaLink="false">tag:obsrv.com,2009:item-d409113f8dde0c428cd550bc9e2cd91d</guid>
<media:content url="http://ww2.hdnux.com/photos/06/15/51/1628761/3/628x471.jpg" type="image/JPEG" medium="image" fileSize="61KB" height="471" width="583" />
<media:title>LOS ANGELES (AP) — Michael Jackson&#39;s doctor was quietly freed from jail on Monday, two years after he was convicted of killing the pop superstar with an</media:title>
<media:description>http://www.obsrv.com/FeedItems/ShowFeedItemsPage.aspx?FeedItems=4796333</media:description>
<media:thumbnail url="http://ts2.mm.bing.net/th?id=HJ.69931579597&pid=15.1' alt='' style='width:221.47659063625px;height:179px;margin-top:0px;margin-left:0px;' /></a></li>" />
<description><a href=http://www.obsrv.com/FeedItems/ShowFeedItemsPage.aspx?FeedItems=4796333 target="_blank" ><img src='http://ww2.hdnux.com/photos/06/15/51/1628761/3/628x471.jpg' width='320px' /></a><br/>www.sfgate.com<br/>29/10/2013 4:34:38 AM GMT</description>
<link>http://www.obsrv.com/FeedItems/ShowFeedItemsPage.aspx?FeedItems=4796333</link>
</item>
我正在编写火花数据网格,如下所示:
<s:DataGrid id="dgNews" x="10" y="150" width="300" height="545" color="#000000" visible="true" horizontalScrollPolicy="off"
variableRowHeight="true" selectionColor="#e1ecf9" click="dgNews_clickHandler(event)">
<s:columns>
<s:ArrayList>
<s:GridColumn dataField="title" headerText="Technology" width="300"/>
<s:GridColumn dataField="content" headerText="Qty" width="198">
<s:itemRenderer>
<fx:Component>
<s:GridItemRenderer>
<s:VGroup>
<s:Image source="{data.content}" height="198" width="198" >
</s:Image>
</s:VGroup>
</s:GridItemRenderer>
</fx:Component>
</s:itemRenderer>
</s:GridColumn>
</s:ArrayList>
</s:columns>
</s:DataGrid>
当我运行这个项目时,我得到了标题,但在图像列中我没有图像。
或者只是我想在列中显示图像
谁能建议我做错了什么?