You may need to use resultFormat e4x and do your own parsing

 

________________________________

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of shrike6_7
Sent: Tuesday, June 17, 2008 7:08 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] "Infinity" value in Datagrid

 

Hi, I have a Datagrid with dataProvider="{productList}", productList
is an ArrayCollection, when I get the records from the server in XML
format I have a string 8e4376, but the DataGrid show me 'Infinity'. 
How can I tell to the grid that 8e4376 is a string?

this is the code of the httpservice:

public var gateway_object:HTTPService = new HTTPService();
gateway_object.url = URL_XYZ;
gateway_object.method = "POST";
gateway_object.resultFormat = "object";

var resultObj:Object = event.result;
productList = resultObj.list.product;

Thanks

 

Reply via email to