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?