I'm using a Tile container and within that I have dynamic Repeater
repeating checkboxes from an ArrayCollection. Everything works just
fine with the exception of the Tile, it seems to want a height set
for it. If I don't give a height it scrolls at about 100 pxls or
so. What do I need to do so it Does Not scroll but isn't set to a
size (exact pixel or 100%)?
CODE:
<mx:Tile direction="horizontal" borderStyle="none" width="100%"
horizontalGap="5" verticalGap="5"
paddingLeft="5" paddingTop="5" paddingBottom="5"
paddingRight="5">
<mx:Repeater id="rDI" dataProvider="{myACDI}">
<mx:CheckBox id="repDI" label="{rDI.currentItem}"/>
</mx:Repeater>
</mx:Tile>
Thanks