Friday, March 26, 2010

charge image from xml

I

Hello at All,

create the script in Flex and I wish to import the image
from XML script. The script works for the text but not for image.
ote I made a parsig of xml and it works very well. I start from php
code to build the xml. However I post the xml code. Could to
correct the script to import the image? Thanks. I remember you the
script works and the data are charged but the not the image. I hope
you help me :) Thanks



Flex Builder 2.0 script:



%26lt;?xml version=''1.0'' encoding=''utf-8''?%26gt;



%26lt;mx:Application xmlns:mx=''
http://www.adobe.com/2006/mxml''
horizontalAlign=''left'' width=''1566'' layout=''horizontal''

initialize=''selectedItem=DG.dataProvider[0]''%26gt;



%26lt;mx:Script%26gt;

var selectedItem:Object;



%26lt;/mx:Script%26gt;





%26lt;mx:Model id=''ItemModel'' source=''
http://127.0.0.1/FLEX/Parse/bin/dat.php''/%26gt;





%26lt;mx:Panel title=''News'' horizontalAlign=''left''
verticalAlign=''bottom'' layout=''horizontal''%26gt;

%26lt;mx:DataGrid id=''DG'' width=''210''
dataProvider=''{ItemModel.item}''
change=''selectedItem=DG.selectedItem'' textAlign=''center''
enabled=''true''%26gt;

%26lt;mx:columns%26gt;

%26lt;mx:DataGridColumn dataField=''ID'' headerText=''ID''
width=''20''/%26gt;

%26lt;mx:DataGridColumn dataField=''Codice'' headerText=''Codice''
width=''60''/%26gt;

%26lt;mx:DataGridColumn dataField=''desc''
headerText=''description'' visible=''false''/%26gt;

%26lt;mx:DataGridColumn dataField=''price'' headerText=''Price''
width=''90''/%26gt;

%26lt;mx:DataGridColumn dataField=''image'' headerText=''image''
width=''90'' visible=''false''/%26gt;









%26lt;/mx:columns%26gt;

%26lt;/mx:DataGrid%26gt;

%26lt;/mx:Panel%26gt;

%26lt;mx:Panel title=''Dettaglio'' width=''311'' height=''193''
horizontalAlign=''right'' fontWeight=''bold'' color=''#ffffff''%26gt;

%26lt;mx:FormItem%26gt;

%26lt;/mx:FormItem%26gt;

%26lt;mx:Label text=''{DG.selectedItem.desc}'' fontWeight=''bold''
color=''#804000'' fontSize=''12'' width=''264'' height=''140''/%26gt;

%26lt;/mx:Panel%26gt;

%26lt;mx:Panel title=''Dettaglio'' width=''186'' height=''193''
horizontalAlign=''right'' fontWeight=''bold'' color=''#ffffff''%26gt;

%26lt;mx:FormItem%26gt;

%26lt;/mx:FormItem%26gt;

%26lt;mx:Image source=''{selectedItem.image}'' width=''150''
height=''140''/%26gt;

%26lt;/mx:Panel%26gt;











%26lt;/mx:Application%26gt;





the xml file:

%26lt;?xml version=''1.0'' encoding=''utf-8'' ?%26gt;

- %26lt;elenco%26gt;

%26lt;item ID=''1'' Codice=''ASDF'' desc=''software'' price=''26''
/%26gt;

%26lt;item ID=''2'' Codice=''FFR'' desc=''sw descrittivo''
price=''50'' /%26gt;

%26lt;item ID=''3'' Codice=''GFT'' desc=''Frutta
ddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd dddddddddddddddddddd''
price=''80'' /%26gt;

%26lt;/elenco%26gt;

No comments:

Post a Comment