Hi,

I was wondering how you access an array inside a dataprovider?

I have a datagrid with a dataprovider of clients, inside that is an
array of address details. Can anyone tell me how I can bind the items in
the address array to columns of the datagrid?

clients
     -id
     -name
     -address
          -- address1
          -- address2
     -email



<mx:DataGrid id="clientDisplay" dataProvider="{clients}" left="10"
top="10" right="10" height="193">
             <mx:columns>
                 <mx:DataGridColumn headerText="ID" dataField="id"
editable="false"/>
                 <mx:DataGridColumn headerText="name" dataField="name"/>

                     <!-- how do I bind address.address1 and
address.address2? -->
                 <mx:DataGridColumn headerText="Address1"
dataField="address.address1"/>
                 <mx:DataGridColumn headerText="Address2"
dataField="address[address2]"/>
                 <mx:DataGridColumn headerText="email"
dataField="email"/>
             </mx:columns>
         </mx:DataGrid>







------------------------ Yahoo! Groups Sponsor --------------------~--> 
Something is new at Yahoo! Groups.  Check out the enhanced email design.
http://us.click.yahoo.com/SISQkA/gOaOAA/yQLSAA/nhFolB/TM
--------------------------------------------------------------------~-> 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
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/
 


Reply via email to