[flexcoders] Array Collection

2010-02-20 Thread criptopus
I have an array collection from a HTTPService and I need to pass it over to a component that has use for one of the fields in the collection. I don't really want to pass the whole array collection over to the component but I need a list of user names from it to make sure the component dosn't

[flexcoders] Array Collection

2009-02-05 Thread thelordsince1984
Hi, i've have an array collection of objects...every object is like this one: - id:path private function create(id:String, path:String):void { var arrayCollection:ArrayCollection = new ArrayCollection(); var o:Object = {id:path}; arrayCollection.addItem(o); } i would create a function that

Re: [flexcoders] array collection retrieve one row from database cause error

2008-09-07 Thread Igor Costa
The coeration error it means you're trying to convert an objectProxy to ArrayCollection. You should convert to array frist and than set the new array created to the ArrayCollection source. -- Igor Costa www.igorcosta.org On Sat, Sep 6, 2008 at 2:26 PM, xiu_jewel [EMAIL PROTECTED] wrote: I

[flexcoders] array collection retrieve one row from database cause error

2008-09-06 Thread xiu_jewel
I had created a timetable in the datagrid. The datagrid is able to display individual staff's tiimetable. However, I was prompt an error when I click on this particular staff to view the class schedule.I realised the error is cause by the array collection only retrieve a row from the

[flexcoders] Array Collection Column Value

2007-02-14 Thread sanjaypmg
Hi, I have an ArrayCollection with various columns. I need to populate different combos using this array collection columns. I have a method where I am passing only column name as a parameter like: public function initArra(curColName:String):void{ var totalLen:int = tempArrCol.length;