<mvc:View
	controllerName="bardusch.btrace.root.controller.Launchpad"
	displayBlock="true"
	xmlns="sap.m"
	xmlns:mvc="sap.ui.core.mvc">
	<Page showHeader="false" id="idPage">
		<IconTabBar
			expandable="false"
			stretchContentHeight="true"
			class="sapUiResponsiveContentPadding"
			items="{
				path: 'user>/PAGES',				
				templateShareable: true,
				events : {
					dataReceived: '.onPageDataReceived'
				}
			}"
		>
			<items>
				<IconTabFilter
					text="{
						path: 'user>ID',
						formatter: '.getCatalogText'
					}"
					key="{user>ID}"
				>
					<VBox items="{
						path: 'user>SECTIONS',
						templateShareable: true
					}">
						<VBox class="sapUiMediumMarginBottom">
							<Title
								class="sapUiLargeMarginBegin sapUiMediumTinyBottom"
								titleStyle="H3"
								text="{
									path: 'user>ID',
									formatter: '.getCatalogText'
								}"
							/>
							<HBox
								items="{
									path: 'user>APPS',
									templateShareable: true,
									factory: '.appFactory'
								}"
								class="sapUiMediumMarginBegin"
							/>
						</VBox>
					</VBox>
				</IconTabFilter>
			</items>
		</IconTabBar>
	</Page>
</mvc:View>