ignatov

Untitled

May 4th, 2020
977
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.06 KB | None | 0 0
  1. <mvc:View controllerName="com.app4.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="">
  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="ZzPhoneNum"/>
  20.                             </Column>
  21.                             <Column>
  22.                                 <Text text="ZzDateBirth"/>
  23.                             </Column>
  24.                         </columns>
  25.                         <items>
  26.                             <ColumnListItem>
  27.                                 <cells>
  28.                                     <Text text="{person>ZzNumber}"/>
  29.                                     <Text text="{person>ZzName}"/>
  30.                                     <Text text="{person>ZzLastName}"/>
  31.                                     <Text text="{person>ZzPhoneNum}"/>
  32.                                     <Text text="{person>ZzDateBirth}"/>
  33.                                 </cells>
  34.                             </ColumnListItem>
  35.                         </items>
  36.                     </Table>
  37.                 </content>
  38.             </Page>
  39.         </pages>
  40.     </App>
  41. </mvc:View>
Add Comment
Please, Sign In to add comment