Advertisement
ignatov

Untitled

Oct 3rd, 2021
2,402
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.08 KB | None | 0 0
  1. <mvc:View controllerName="com_zapplication99.controller.Table" xmlns:html="http://www.w3.org/1999/xhtml" xmlns:mvc="sap.ui.core.mvc"
  2.     displayBlock="true" xmlns="sap.m">
  3.     <App>
  4.         <pages>
  5.             <Page>
  6.                 <content>
  7.                     <Table id="idEmployeesTable" inset="false" fixedLayout="Strict" alternateRowColors="true" items="{path: 'employee>/employeeSet'}">
  8.                         <headerToolbar>
  9.                             <OverflowToolbar>
  10.                                 <Title text="{i18n>title}" level="H2"/>
  11.                             </OverflowToolbar>
  12.                         </headerToolbar>
  13.                         <columns>
  14.                             <Column >
  15.                                 <Text text="Personnel Number"/>
  16.                             </Column>
  17.                             <Column >
  18.                                 <Text text="Name of Employee"/>
  19.                             </Column>
  20.                             <Column minScreenWidth="Tablet">
  21.                                 <Text text="EMail"/>
  22.                             </Column>
  23.                         </columns>
  24.                         <items>
  25.                             <ColumnListItem>
  26.                                 <cells>
  27.                                     <ObjectIdentifier text="{employee>id}"/>
  28.                                     <Text text="{employee>name}"/>
  29.                                     <Text text="{employee>email}"/>
  30.                                 </cells>
  31.                             </ColumnListItem>
  32.                         </items>
  33.                     </Table>
  34.                 </content>
  35.             </Page>
  36.         </pages>
  37.     </App>
  38. </mvc:View>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement