Sha256: bedb05ef52a53e50112b7fe7cc14da65f24042453b693203d8ec0d41311169ee

Contents?: true

Size: 1.46 KB

Versions: 2

Compression:

Stored size: 1.46 KB

Contents

<mvc:View
  xmlns="sap.m"
    xmlns:f="sap.ui.layout.form"
    xmlns:core="sap.ui.core"
  xmlns:mvc="sap.ui.core.mvc"
    controllerName="vibert.controller.Parentage_Detail" >
  <Page title="Parentage detail "   showNavButton="true"   navButtonPress="onNavBack"   >


        <ObjectHeader title="{cultivar_id} : {ptype_id} : {parent_id}"/>

        <f:SimpleForm editable="true">


        <Label text="Cultivar id"/>

        <Input id="cultivar_id"  type="Text"
               width="40%"
               showValueHelp="true"
               valueHelpRequest="onIdValueHelp"
                name="cultivar_id" enabled="false" value="{cultivar_id}"    />
        <Text id="cultivar_id_descr" text="{cultivar/name}"/>



        <Label text="Parent type"/>

      <ComboBox id="ptype_id_combo"
        showSecondaryValues= "true"
                width="40%"
                enabled="false"
                value="{ptype_id}"
        items="{path: 'par_type' }"   >
        <core:ListItem key="{id}" text="{id}" additionalText = "{description}"/>
      </ComboBox>


        <Text text="{path:'par_type/description'}" />

        <Label text="Parent id"/>
        <Input id="parent_id"  type="Text"   name="parent_id"
                width="40%"
               showValueHelp="true"
                valueHelpRequest="onIdValueHelp"
                enabled="false" value="{parent_id}"   />
        <Text id="parent_id_descr" text="{parent/name}"/>
        </f:SimpleForm>

  </Page>
</mvc:View>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
fiveapples-0.0.4 lib/ui5/view/Parentage_Detail.view.xml
fiveapples-0.0.3 lib/ui5/view/Parentage_Detail.view.xml