I've got a Flex TileList which has an ArrayCollection as its data provider. The ArrayCollection is used elsewhere in the application so modifying the base data is not possible.

There are two items at the start of the collection (indices 0 and 1) which I don't want to be rendered.

Is it possible to exclude these items from the TileList rendering?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

I would recommend that you create a new collection using the same source as your original ARrayCollection. Then apply a filter to remove those two items. This will not affect the your original data source or the other ArrayCollection which contains all the data.

The alternate would be to extend the TileList to ignore the first two items in it's dataProvider. I anticipate this would be difficult at best.

link|improve this answer
nice answer, @adamk you should definitely create a new ArrayCollection and just exclude the first 2. – Adnan Nov 24 '10 at 12:35
Of course! Why didn't I think of that? Thanks :) – adamk Nov 24 '10 at 13:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.