hi,
can I create an ArrayCollection into another ArrayCollectionon in Flex ?
(or just an array.. or a list if I cannot)
thanks
hi,
can I create an ArrayCollection into another ArrayCollectionon in Flex ?
(or just an array.. or a list if I cannot)
thanks
Yes, there is no reason why you couldn't do it.
        var array:ArrayCollection = new ArrayCollection();
        var childArray:ArrayCollection = new ArrayCollection();
        childArray.addItem("test");
        array.addItem(childArray);