Hummm, but how can I iterate my usersWO subcollection in Datagrid to put these items in multiline label? Do you have an idea?
--- In [email protected], "tntomek" <tnto...@...> wrote: > > You can use a multiline label Function to display your text. > > In your label function simply append "\n" as you loop through your sub > collection > > http://tomek.me > > --- In [email protected], "Jesus Saad" <jesus.saad@> wrote: > > > > > > Is possible to display any Collection within another Collection using > > anyone flex component? > > > > Ex.: I have a ArrayCollectionâPersonsWO and my class PersonsWO > > has the following property: private var _usersWO:ArrayCollection; > > And I want to display these data in Datagrid like that: > > > > Person > > > > User > > > > > > > > Jesus > > > > Jesus.saad > > > > Jesus > > > > Jesus.adm > > > > Jesuzz > > > > John > > > > John > > > > Example > > > > example > > > > > > Following part of my PersonsWO class: > > > > > > > > package br.com.arquimagem.AccessFlex.WO{ > > > > import mx.collections.ArrayCollection; > > > > > > > > public class PersonsWO > > > > { > > > > private var _id:int; > > > > private var _type:String; > > > > private var _name:String; > > > > private var _legalName:String; > > > > private var _stateRegistration:String; > > > > private var _doc:String; > > > > private var _cpfOuCnpj:String; > > > > private var _remark:String; > > > > private var _clazz:String; > > > > private var _status:String; > > > > private var _usersWO:ArrayCollection; > > > > ... > > > > > > > > Does anyone know how to do that? > > >

