Return to Snippet

Revision: 48363
at June 29, 2011 20:45 by mcorlan


Updated Code
<components:SectionList id="list" x="0" y="0" 
	width="100%" height="100%" 
	sectionField="section" 
	dataProvider="{arr}">
	
    <components:layout>
        <layout:SectionListLayout columnWidth="200"/>
    </components:layout>
	
    <components:itemRenderer>
	<fx:Component>
	    <skins:SectionListItemRenderer 
		normalLabelField="label" 
		sectionField="section" 
		backgroundSection="0x1d9cd1"/>
	</fx:Component>
    </components:itemRenderer>
</components:SectionList>

Revision: 48362
at June 29, 2011 20:23 by mcorlan


Initial Code
<components:SectionList id="list" x="0" y="0" 
						width="100%" height="100%" 
						sectionField="section" 
						dataProvider="{arr}">
	<components:layout>
		<layout:SectionListLayout columnWidth="200"/>
	</components:layout>
	
	<components:itemRenderer>
		<fx:Component>
			<skins:SectionListItemRenderer 
				normalLabelField="label" 
				sectionField="section" 
			   	backgroundSection="0x1d9cd1"/>
		</fx:Component>
	</components:itemRenderer>
</components:SectionList>

Initial URL
http://corlan.org/?p=2931

Initial Description


Initial Title
Using the SectionList component with custom layout manager

Initial Tags
list, mobile, Flex

Initial Language
ActionScript 3