ignatov

Untitled

Apr 20th, 2020
368
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.01 KB | None | 0 0
  1. <mvc:View controllerName="com.app2.controller.View1" 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 title="{i18n>title}">
  6.                 <content>
  7.                     <Table id="idEmployeeTable" inset="false" items="{person>/results}">
  8.                         <columns>
  9.                             <Column>
  10.                                 <Text text="ZzNumber"/>
  11.                             </Column>
  12.                             <Column>
  13.                                 <Text text="ZzName"/>
  14.                             </Column>
  15.                             <Column>
  16.                                 <Text text="ZzLastName"/>
  17.                             </Column>
  18.                             <Column>
  19.                                 <Text text="ZzLastName"/>
  20.                             </Column>
  21.                         </columns>
  22.                         <items>
  23.                             <ColumnListItem>
  24.                                 <cells>
  25.                                     <Text text="{person>ZZ_NUMBER}"/>
  26.                                     <Text text="{person>ZZ_NAME}"/>
  27.                                     <Text text="{person>ZZ_LAST_NAME}"/>
  28.                                     <Text text="{person>ZZ_DATE_BIRTH}"/>
  29.                                     <Text text="{person>ZZ_PHONE_NUM}"/>
  30.                                 </cells>
  31.                             </ColumnListItem>
  32.                         </items>
  33.                     </Table>
  34.                 </content>
  35.             </Page>
  36.         </pages>
  37.     </App>
  38. </mvc:View>
Add Comment
Please, Sign In to add comment