<mvc:View
		controllerName="appUnderTest.controller.Main"
		xmlns="sap.m"
		xmlns:mvc="sap.ui.core.mvc">
	<Shell>
		<App>
			<Page title="List Page">
				<content>
					<List
							id="productList"
							items="{/ProductCollection}"
							mode="MultiSelect"
							includeItemInSelection="true">
						<headerToolbar>
							<OverflowToolbar>
								<ToolbarSpacer/>
								<SearchField id="maxPrice">
									<layoutData><OverflowToolbarLayoutData minWidth="200px" maxWidth="300px" shrinkable="false"/></layoutData>
								</SearchField>
								<Button type="Transparent" text="Sort 2" icon="sap-icon://sort" width="100px"/>
								<Button type="Transparent" text="Group" icon="sap-icon://group-2" width="100px"/>
							</OverflowToolbar>
						</headerToolbar>
						<StandardListItem
								title="{Name}"
								description="{ProductId}"/>
					</List>
				</content>
			</Page>
		</App>
	</Shell>
</mvc:View>