[flexcoders] Re: Webservice and column name question.

2006-08-31 Thread dinger0007
No it gave me the actual data. But thanks allot for the response. Here is what i have finally come up with: for(var i in test){ for(var j in test[i]){ trace(j); }} My initial thought about flex and actionscript: It is a hard road getting to the solution but once there it is such a

[flexcoders] Re: Webservice and column name question.

2006-08-30 Thread dinger0007
Correct, the structure (column names) are dynamic based on the webservice operations. Let see if I can be more specific. This is what I have so far, it returns the actual data in the console window. But want to display the column names in the console test = new ArrayCollection( event.result as

RE: [flexcoders] Re: Webservice and column name question.

2006-08-30 Thread Franck de Bruijn
Of dinger0007 Sent: Wednesday, August 30, 2006 2:27 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Webservice and column name question. Correct, the structure (column names) are dynamic based on the webservice operations. Let see if I can be more specific. This is what I have so far

[flexcoders] Re: Webservice and column name question.

2006-08-30 Thread Doug Lowder
Does this give you what you want? for each(var item in test) { for each(var colname in item) { trace(colname); } } --- In flexcoders@yahoogroups.com, dinger0007 [EMAIL PROTECTED] wrote: I have a query result coming back from a webservice call and i want to pull the column names out