Re: Repeater performance
"pbittner" <webforumsuser@macromedia.com> wrote in message
news:ge77no$cso$1@forums.macromedia.com...
> I'm currently working on a Flex project and need to show the content of a
> dictionary (a xml file). After the creation of an Entry object for each
> entry
> of my dictionary, the easiest way to display one entry is to use one
> Repeater
> for the entry's attributes (each entry has got one or more attributes),
> one
> Repeater for the attribute's items (each attribute has got items) and one
> Repeater for the item's links (each item has got links). But as you can
> guess
> it's not very efficient. I cannot harcode because my App must be able to
> display any kind of dictionary which means different numbers of
> attributes,
> items and links. Any idea ?
If you can pare it down to use Canvases or even UIComponents instead of
HBoxes and VBoxes, that will help performance a lot. Also, you might want
to look at setting the recycleChildren property to true.
HTH;
Amy
|