Advertisement
ignatov

Untitled

Mar 11th, 2020
827
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.90 KB | None | 0 0
  1. <core:FragmentDefinition xmlns="sap.m"
  2. xmlns:l="sap.ui.layout"
  3. xmlns:mvc="sap.ui.core.mvc"
  4. xmlns:f="sap.ui.layout.form" xmlns:core="sap.ui.core">
  5.     <Dialog id="idDetailedEmployeeInfo" title="">
  6.         <VBox class="sapUiSmallMargin">
  7.             <f:Form id="FormDisplay354" editable="false">
  8.                 <f:title>
  9.                     <core:Title text="Employee Detailed Infromation"/>
  10.                 </f:title>
  11.                 <f:layout>
  12.                     <f:ResponsiveGridLayout singleContainerFullSize="true"></f:ResponsiveGridLayout>
  13.                 </f:layout>
  14.                 <f:formContainers>
  15.                     <f:FormContainer>
  16.                         <f:formElements>
  17.                             <f:FormElement label="Employee Name">
  18.                                 <f:fields>
  19.                                     <Text text="{employee>emplName}"/>
  20.                                 </f:fields>
  21.                             </f:FormElement>
  22.                             <f:FormElement label="Employee Last Name">
  23.                                 <f:fields>
  24.                                     <Text text="{employee>emplLName}"/>
  25.                                 </f:fields>
  26.                             </f:FormElement>
  27.                             <f:FormElement label="Employee Birth Day">
  28.                                 <f:fields>
  29.                                     <Text text="{employee>/emplBDay}"/>
  30.                                 </f:fields>
  31.                             </f:FormElement>
  32.                             <f:FormElement label="Employee Phone Number">
  33.                                 <f:fields>
  34.                                     <Text text="{employee>emplPhoneNum}" />
  35.                                 </f:fields>
  36.                             </f:FormElement>
  37.                             <f:FormElement label="Employee Work Place">
  38.                                 <f:fields>
  39.                                     <Text text="{employee>emplWorkPlace}" />
  40.                                 </f:fields>
  41.                             </f:FormElement>
  42.                             <f:FormElement label="Employee Department">
  43.                                 <f:fields>
  44.                                     <Text text="{employee>emplDepartment}" />
  45.                                 </f:fields>
  46.                             </f:FormElement>
  47.                             <f:FormElement label="Employee Address">
  48.                                 <f:fields>
  49.                                     <Text text="{employee>emplAddres}" />
  50.                                 </f:fields>
  51.                             </f:FormElement>
  52.                            
  53.                         </f:formElements>
  54.                     </f:FormContainer>
  55.                 </f:formContainers>
  56.             </f:Form>
  57.             <Button icon="sap-icon://decline" press="onCloseDialog" text="Close"/>
  58.         </VBox>
  59.            
  60.     </Dialog>
  61. </core:FragmentDefinition>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement