Some checks failed
gitea/abap_tutorial_11/pipeline/head There was a failure building this commit
39 lines
1.3 KiB
XML
39 lines
1.3 KiB
XML
<mvc:View
|
|
controllerName="mvcapp00124.controller.Details"
|
|
xmlns:mvc="sap.ui.core.mvc"
|
|
xmlns="sap.m"
|
|
displayBlock="true"
|
|
height="100%"
|
|
busyIndicatorDelay="0"
|
|
xmlns:f="sap.ui.layout.form"
|
|
>
|
|
<Page id="page">
|
|
<content>
|
|
<VBox class="sapUiSmallMargin">
|
|
<f:SimpleForm
|
|
id="flightDetails"
|
|
title="Flight Details"
|
|
>
|
|
<f:content>
|
|
<Label text="Flight ID" />
|
|
<Text text="{flightId}" />
|
|
<Label text="From" />
|
|
<Text text="{from}" />
|
|
<Label text="To" />
|
|
<Text text="{to}" />
|
|
<Label text="Date" />
|
|
<Text text="{date}" />
|
|
<Label text="Time" />
|
|
<Text text="{time}" />
|
|
<Label text="Status" />
|
|
<Text text="{status}" />
|
|
<Label text="Planned Arrival" />
|
|
<Text text="{plannedArrival}" />
|
|
<Label text="Information" />
|
|
<Text text="{info}" />
|
|
</f:content>
|
|
</f:SimpleForm>
|
|
</VBox>
|
|
</content>
|
|
</Page>
|
|
</mvc:View> |