30 lines
1.1 KiB
XML
30 lines
1.1 KiB
XML
<mvc:View
|
|
controllerName="ui5.walkthrough.controller.HelloPanel"
|
|
xmlns="sap.m"
|
|
xmlns:mvc="sap.ui.core.mvc">
|
|
<Panel
|
|
headerText="{i18n>helloPanelTitle}"
|
|
class="sapUiResponsiveMargin"
|
|
width="auto">
|
|
<content>
|
|
<Button
|
|
id="helloDialogButton"
|
|
icon="sap-icon://world"
|
|
text="{i18n>openDialogButtonText}"
|
|
press=".onOpenDialog"
|
|
class="sapUiSmallMarginEnd"/>
|
|
<Button
|
|
text="{i18n>showHelloButtonText}"
|
|
press=".onShowHello"
|
|
class="myCustomButton"/>
|
|
<Input
|
|
value="{/recipient/name}"
|
|
description="Hello {/recipient/name}"
|
|
valueLiveUpdate="true"
|
|
width="60%"/>
|
|
<FormattedText
|
|
htmlText="Hello {/recipient/name}"
|
|
class="sapUiResponsiveMargin sapThemeHighlight-asColor myCustomText"/>
|
|
</content>
|
|
</Panel>
|
|
</mvc:View> |