I have attempted twice to get a tileList of data in a DataGroup to scroll, here
are my two attempts:
ATTEMPT ONE:
<s:SkinnableDataContainerwidth="100%" height="100%"
itemRenderer="com.silenttrace.hal.views.ItemRenders.AliveDeadItemRenderer"
dataProvider="{items}">
<s:layout>
<layouts1:FilteredTileLayout id="filterLayout" filteredItems="{filteredItems}"/>
</s:layout>
</s:SkinnableDataContainer>
ATTEMPT TWO:
<s:Scroller width="100%" height="100%" horizontalScrollPolicy="off"
verticalScrollPolicy="auto">
<s:DataGroup dataProvider="{items}"
itemRenderer="com.silenttrace.hal.views.ItemRenders.AliveDeadItemRenderer"
top="50" left="0" right="0" horizontalCenter="0" clipAndEnableScrolling="true">
<s:layout>
<layouts1:FilteredTileLayout id="filterLayout" filteredItems="{filteredItems}"/>
</s:layout>
</s:DataGroup>
</s:Scroller>
So as you can see the first attempt was to use a skinnableContainer, and the
second was to use a Scroller. What happens is the tileList layout works great
but there is NEVER a scroll bar so that I can see all the data. What happens
is as I resize and move the window around I can see more and more of the data
but when the window gets a little smaller I miss data - is there something I am
missing?
-r