Advertisement
ignatov

Untitled

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