[flexcoders] Re: Having problems iterating ResultSet returned to Flex via Blaze

2009-07-16 Thread valdhor
I don't use Java or BlazeDS but when I get data from PHP via AMF, I usually send back an array of objects. On the Flex side I do this: datagridArrColl = new ArrayCollection(ArrayUtil.toArray(event.result)); myDatagrid.dataProvider = datagridArrColl; --- In flexcoders@yahoogroups.com,

Re: [flexcoders] Re: Having problems iterating ResultSet returned to Flex via Blaze

2009-07-16 Thread Tim Finlayson
thx for the response...I've actaully tried this approach with no success... Also, it seems that Blaze passes back an ObjectProxy and from what I gathered online you should be able to use the ArrayUtil.toArray against this as well, which I also tried unsuccessfully... For now, I'm passing a List

[flexcoders] Re: Having problems iterating ResultSet returned to Flex via Blaze

2009-07-16 Thread valdhor
So, if you put a breakpoint in your resultEvent function, what does the event.result data look like? What does Charles (http://www.charlesproxy.com) show as the data? Perhaps you could post some screen shots of both? --- In flexcoders@yahoogroups.com, Tim Finlayson tim...@... wrote: thx