<mvc:View
	controllerName="bardusch.btrace.materialgroup.controller.Main"
	displayBlock="true"
	xmlns="sap.m"
	xmlns:core="sap.ui.core"
	xmlns:mvc="sap.ui.core.mvc"
>
	<Page showHeader="false" class="sapUiContentPadding">
		<List id="idDescriptionList" items="{/MATERIAL_GROUP}" mode="Delete" delete="onDeletePress">
			<headerToolbar>
				<Toolbar>
					<Title text="{i18n>toolbarTitle}"/>
					<ToolbarSpacer/>
					<Button text="{i18n>createButton}" icon="sap-icon://create" press="onCreatePress"/>
				</Toolbar>

			</headerToolbar>
			<items>
				<StandardListItem title="{DESCRIPTION}" description="ID: {path: 'ID', type: 'sap.ui.model.type.String'}"/>
			</items>
		
		</List>
	</Page>
</mvc:View>