@openui5/sap.ui.demokit
Version:
OpenUI5 UI Library sap.ui.demokit
48 lines (47 loc) • 1.25 kB
text/xml
<mvc:View
xmlns:mvc="sap.ui.core.mvc"
xmlns:core="sap.ui.core"
xmlns:l="sap.ui.layout"
xmlns:d="sap.ui.demokit"
controllerName="sap.ui.demokit.explored.view.code"
xmlns="sap.m">
<Page
id="page"
showNavButton="true"
navButtonPress="onNavBack"
title="{/title}"
icon="img/144_iPad_Retina_Web_Clip.png" >
<landmarkInfo>
<PageAccessibleLandmarkInfo rootRole="Region" rootLabel="Details" headerRole="Region" headerLabel="Header" contentRole="Main" contentLabel="Content"></PageAccessibleLandmarkInfo>
</landmarkInfo>
<headerContent>
<Button
class="sapUiHideOnPhone"
text="Download"
icon="sap-icon://download"
press="onDownload" />
<Button
class="sapUiVisibleOnlyOnPhone"
icon="sap-icon://download"
press="onDownload" />
</headerContent>
<content>
<IconTabBar
class="sapUiContentPadding"
expandable="false"
selectedKey="{/fileName}"
select="handleTabSelectEvent"
items="{/files}" >
<items>
<IconTabFilter
key="{name}"
text="{name}" >
<content>
<d:CodeViewer class="sapUiExploredCodeViewer" source="{raw}" lineNumbering="true"/>
</content>
</IconTabFilter>
</items>
</IconTabBar>
</content>
</Page>
</mvc:View>