<mvc:View   controllerName="slsordage.controller.deliveryItems"
            xmlns:mvc="sap.ui.core.mvc" 
            displayBlock="true"
            xmlns:core="sap.ui.core"
            xmlns="sap.m"
			xmlns:f="sap.ui.layout.form"
			xmlns:smartFilterBar="sap.ui.comp.smartfilterbar"
			xmlns:smartTable="sap.ui.comp.smarttable"
			xmlns:l="sap.ui.layout">

    <Page id="pageDeliveryItems"    title="{i18n>deliveryItems}"		
                            		showHeader="false"
		                    		enableScrolling="true"
		                    		class="sapUiContentPadding"
		                    		showNavButton="false" >
        <content>

			<VBox fitContainer="true">
					<!-- SMART TABLE -->
					<smartTable:SmartTable 	id="deliveryItems" 
											entitySet="ZC_SLS_AGE_DELIVERY_items" 
											tableType="ResponsiveTable" 
											beforeExport="onBeforeExport" 
											useVariantManagement="true" 
											useTablePersonalisation="true" 
											header="{i18n>OrderReport}"
											showRowCount="true" 
											persistencyKey="SmartTableAnalytical_Explored" 
											enableAutoBinding="true" 
											class="sapUiResponsiveContentPadding"
											editTogglable="false"
											editable="false"
											beforeRebindTable="onBeforeRebindDelivItems">
						<Table id="deliveryItemsTableId" selectionChange="onSelectionChangeChange" mode="MultiSelect">
							<ColumnListItem	id="deliveryItemsCols"
											type="Navigation"
											vAlign="Middle"
											selected="false"
											press="onPressDeliveryItems">
							</ColumnListItem>
						</Table>
					</smartTable:SmartTable>
				</VBox>

        </content>
    </Page>
</mvc:View>