On 6/9/05, Jeremy Bruck <[EMAIL PROTECTED]> wrote: > This one has unfortunately has had me beating my head against a wall. I > have a TileList that I am trying to pass an array of objects (gotten > from remote AMF call to CFMX CFC) to the cellRenderer and am having > problems seeing the object in the cellRenderer. The problem is my > Object in the cellRenderer is just showing everything as undefined.
> CellRenderer Code: > <?xml version="1.0" encoding="utf-8"?> > <mx:VBox xmlns:mx="http://www.macromedia.com/2003/mxml" width="100%" > height="100%"> > <mx:Script> > <![CDATA[ > var singleGroup:Object; > ]]> > </mx:Script> > > <mx:CheckBox id="groupID" label="{singleGroup.groupname}" /> > </mx:VBox> You need to initialize the 'singleGroup' object in setValue() See the cellrenderer doc: http://livedocs.macromedia.com/flex/15/flex_docs_en/wwhelp/wwhimpl/common/html/wwhelp.htm?context=Flex_Documentation&file=00000531.htm Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/

