May 2019
Beginner to intermediate
548 pages
12h 39m
English
This simple application's sole functionality will be searching for a flight from a specific location. The location should be entered by the user and then confirmed by pressing the Search button.
The code for the appropriate view is listed as follows:
<mvc:View controllerName="my.namespace.controllers.SearchView" xmlns="sap.m" xmlns:mvc="sap.ui.core.mvc" xmlns:l="sap.ui.layout"> <Page id="searchPage" title="{i18n>TTL_SearchPage}"> <Panel expandable="false" expanded="true" headerText="{i18n>HDR_SearchPanel}"> <l:Grid defaultSpan="XL2 L3 M6 S12"> <l:content> <Label text="{i18n>LBL_Search}"/> <Input id="searchInput"/> <Button text="{i18n>BTN_Search}" press="searchButtonPressed"/> </l:content> </l:Grid> </Panel> <List id="flightsList" ...Read now
Unlock full access