Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <mvc:View controllerName="com_zapplication99.controller.Table" xmlns:html="http://www.w3.org/1999/xhtml" xmlns:mvc="sap.ui.core.mvc"
- displayBlock="true" xmlns="sap.m">
- <App>
- <pages>
- <Page>
- <content>
- <Table id="idEmployeesTable" inset="false" fixedLayout="Strict" alternateRowColors="true" items="{path: 'employee>/employeeSet'}">
- <headerToolbar>
- <OverflowToolbar>
- <Title text="{i18n>title}" level="H2"/>
- </OverflowToolbar>
- </headerToolbar>
- <columns>
- <Column >
- <Text text="Personnel Number"/>
- </Column>
- <Column >
- <Text text="Name of Employee"/>
- </Column>
- <Column minScreenWidth="Tablet">
- <Text text="EMail"/>
- </Column>
- </columns>
- <items>
- <ColumnListItem>
- <cells>
- <ObjectIdentifier text="{employee>id}"/>
- <Text text="{employee>name}"/>
- <Text text="{employee>email}"/>
- </cells>
- </ColumnListItem>
- </items>
- </Table>
- </content>
- </Page>
- </pages>
- </App>
- </mvc:View>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement