<iframe src="http://blog.minidx.com/ext05/resizing-a-flex-list-control-using-the-rowcount-property/main.html" width="550" height="380"></iframe>
- <?xml version="1.0" encoding="utf-8"?>
- <mx:Applicationxmlns:mx="http://www.adobe.com/2006/mxml"
- layout="vertical"
- verticalAlign="middle"
- backgroundColor="white">
- <mx:XMLid="mlbXML" >
- <teams>
- <leagueid="AL">
- <teamlabel="Baltimore Orioles" />
- <teamlabel="Boston Red Sox" />
- <teamlabel="Chicago White Sox" />
- <teamlabel="Cleveland Indians" />
- <teamlabel="Detroit Tigers" />
- <teamlabel="Kansas City Royals" />
- <teamlabel="Los Angeles Angels of Anaheim" />
- <teamlabel="Minnesota Twins" />
- <teamlabel="New York Yankees" />
- <teamlabel="Oakland Athletics" />
- <teamlabel="Seattle Mariners" />
- <teamlabel="Tampa Bay Devil Rays" />
- <teamlabel="Texas Rangers" />
- <teamlabel="Toronto Blue Jays" />
- </league>
- </teams>
- </mx:XML>
- <mx:XMLListCollectionid="alTeams"
- source="{mlbXML.league.(@id == 'AL').team}"/>
- <mx:ApplicationControlBardock="true">
- <mx:Form>
- <mx:FormItemlabel="rowCount:">
- <mx:HSliderid="slider"
- minimum="1"
- maximum="10"
- snapInterval="1"
- liveDragging="true"
- dataTipPrecision="0"
- change="list.rowCount = event.value;"/>
- </mx:FormItem>
- </mx:Form>
- </mx:ApplicationControlBar>
- <mx:VBoxid="vBox" height="100%">
- <mx:Listid="list"
- maxHeight="{vBox.height}"
- dataProvider="{alTeams}"
- labelField="@label"/>
- </mx:VBox>
- </mx:Application>