first commit
This commit is contained in:
51
webapp/view/Main.view.xml
Normal file
51
webapp/view/Main.view.xml
Normal file
@ -0,0 +1,51 @@
|
||||
<mvc:View controllerName="mvcapp00124.controller.Main"
|
||||
xmlns:mvc="sap.ui.core.mvc"
|
||||
xmlns="sap.m">
|
||||
<Page id="page" title="{i18n>title}">
|
||||
<content>
|
||||
<IconTabBar id="centralTabBar" class="sapUiResponsiveContentPadding" expandable="false">
|
||||
<items>
|
||||
<IconTabFilter text="Arrival">
|
||||
<Table id="arrivalFlights" items="{/Flight}" growing="true">
|
||||
<columns>
|
||||
<Column>
|
||||
<Text text="Flight ID" />
|
||||
</Column>
|
||||
<Column>
|
||||
<Text text="From" />
|
||||
</Column>
|
||||
<Column>
|
||||
<Text text="To" />
|
||||
</Column>
|
||||
<Column>
|
||||
<Text text="Date" />
|
||||
</Column>
|
||||
<Column>
|
||||
<Text text="Time" />
|
||||
</Column>
|
||||
<Column>
|
||||
<Text text="Status" />
|
||||
</Column>
|
||||
</columns>
|
||||
<items>
|
||||
<ColumnListItem type="Navigation" press="handleLineItemPress">
|
||||
<cells>
|
||||
<Text text="{flightId}"/>
|
||||
<Text text="{from}"/>
|
||||
<Text text="{to}"/>
|
||||
<Text text="{date}"/>
|
||||
<Text text="{time}"/>
|
||||
<Text text="{status}"/>
|
||||
</cells>
|
||||
</ColumnListItem>
|
||||
</items>
|
||||
</Table>
|
||||
</IconTabFilter>
|
||||
<IconTabFilter text="Departure">
|
||||
<Text text="Here you will see departing flights soon!"/>
|
||||
</IconTabFilter>
|
||||
</items>
|
||||
</IconTabBar>
|
||||
</content>
|
||||
</Page>
|
||||
</mvc:View>
|
Reference in New Issue
Block a user