Object Page with ObjectPageHeaderActionButtons
This example demonstrates ObjectPage with ObjectPageHeaderActionButtons and a GenericTag in the header.
Z2UI5_CL_SMPC_APP_239
Controls
sap.uxap
UI5 1.71
The facts
- Repository
- abap2UI5/samples-controls
- Class
Z2UI5_CL_SMPC_APP_239- Source file
z2ui5_cl_smpc_app_239.clas.abap↗- Library
- sap.uxap
- UI5 entity
sap.uxap.ObjectPageHeaderActionButton- Demo kit sample
sap.uxap.sample.ObjectPageHeaderActionButtons- SAP's own sample
- running at sdk.openui5.org ↗
- Minimum UI5
- 1.71 — the floor abap2UI5 holds its samples to
- In the playground
- runs in the browser, with no system and nothing installed
Keywords: objectpageheaderactionbutton, object, header, action, button, sap.uxap, objectpageheaderactionbuttons, html, objectpagelayout, objectpagedynamicheadertitle, breadcrumbs, link
Controls it builds
- sap.m.Breadcrumbs
- sap.m.GenericTag
- sap.m.Label
- sap.m.Link
- sap.m.ObjectAttribute
- sap.m.ObjectStatus
- sap.m.Text
- sap.m.Title
- sap.ui.core.HTML
- sap.ui.core.mvc.View
- sap.ui.layout.HorizontalLayout
- sap.ui.layout.VerticalLayout
- sap.ui.layout.form.SimpleForm
- sap.uxap.ObjectPageDynamicHeaderTitle
- sap.uxap.ObjectPageHeaderActionButton
- sap.uxap.ObjectPageLayout
- sap.uxap.ObjectPageSection
- sap.uxap.ObjectPageSubSection
Read out of the builder chain by the abap2UI5 linter, not from the category this sample is filed under — which is what makes “which samples build one of these” a question the catalogue can answer at all.
Libraries
Run it here
The sample running, in this page — the app on its own, with no editor over it.
Switch to Playground with this code
Nothing is installed and nothing is sent anywhere: the ABAP is compiled to JavaScript in this browser and runs against abap2UI5 itself.
The ABAP
z2ui5_cl_smpc_app_239.clas.abap — 567 lines
Click a number to link to a line — shift-click for a range.
Read it on GitHub ↗
" @keywords objectpageheaderactionbutton object header action button sap.uxap objectpageheaderactionbuttons html objectpagelayout objectpagedynamicheadertitle breadcrumbs link
" @summary This example demonstrates ObjectPage with ObjectPageHeaderActionButtons and a GenericTag in the header.
CLASS z2ui5_cl_smpc_app_239 DEFINITION PUBLIC.
PUBLIC SECTION.
INTERFACES z2ui5_if_app.
PROTECTED SECTION.
DATA client TYPE REF TO z2ui5_if_client.
METHODS view_display.
PRIVATE SECTION.
ENDCLASS.
CLASS z2ui5_cl_smpc_app_239 IMPLEMENTATION.
METHOD z2ui5_if_app~main.
me->client = client.
IF client->check_on_navigated( ).
view_display( ).
ENDIF.
ENDMETHOD.
METHOD view_display.
DATA(view) = z2ui5_cl_ui5_view_builder=>factory( ).
" sap.uxap.ObjectPageLayout showcasing sap.uxap.ObjectPageHeaderActionButton
" in the ObjectPageDynamicHeaderTitle actions/navigationActions. Each of the
" 15 subsections holds a custom BlockBase control (sample:mySimpleBlock, from
" the AnchorBar SharedBlocks JS): a BlockBase is only a lazy-loading wrapper
" around a view, so its content (a font-size div wrapping a SimpleForm with a
" Label + Text) is inlined here directly as the SimpleForm - thin frontend,
" no custom JS control. The html:div font-size wrapper is dropped (a control
" cannot wrap another control via core:HTML); the block's default-sap.m
" Label/Text carry the m: prefix in this single-default-namespace (sap.uxap)
" view (namespace-representation difference).
view->ele( n = `View` ns = `mvc`
)->a( n = `xmlns` v = `sap.uxap`
)->a( n = `xmlns:mvc` v = `sap.ui.core.mvc`
)->a( n = `xmlns:core` v = `sap.ui.core`
)->a( n = `xmlns:m` v = `sap.m`
)->a( n = `xmlns:layout` v = `sap.ui.layout`
)->a( n = `xmlns:forms` v = `sap.ui.layout.form`
)->a( n = `height` v = `100%`
" the block view wraps its SimpleForm in <html:div style="font-size:
" 0.875rem">. A control cannot be wrapped by core:HTML, but the FONT SIZE
" is not lost with it: one class on each inlined form plus the rule
" behind it reproduces exactly what the div does (app 240's shape, and
" what CAPABILITIES prescribes instead of dropping the CSS)
)->tag( n = `HTML` ns = `core`
)->a( n = `content` v = `<style>.smpcBlockFont\{font-size:0.875rem\}</style>`
)->ele( `ObjectPageLayout`
)->a( n = `id` v = `ObjectPageLayout`
)->a( n = `showTitleInHeaderContent` v = `true`
)->a( n = `upperCaseAnchorBar` v = `false`
)->ele( `headerTitle`
)->ele( `ObjectPageDynamicHeaderTitle`
)->ele( `breadcrumbs`
)->ele( n = `Breadcrumbs` ns = `m`
)->tag( n = `Link` ns = `m`
)->a( n = `text` v = `Page 1`
)->tag( n = `Link` ns = `m`
)->a( n = `text` v = `Page 2`
)->tag( n = `Link` ns = `m`
)->a( n = `text` v = `Page 3`
)->tag( n = `Link` ns = `m`
)->a( n = `text` v = `Page 4`
)->tag( n = `Link` ns = `m`
)->a( n = `text` v = `Page 5`
)->end(
)->end(
)->ele( `expandedHeading`
)->tag( n = `Title` ns = `m`
)->a( n = `text` v = `Denise Smith`
)->a( n = `wrapping` v = `true`
)->end(
)->ele( `snappedHeading`
)->tag( n = `Title` ns = `m`
)->a( n = `text` v = `Denise Smith`
)->a( n = `wrapping` v = `true`
)->end(
)->ele( `expandedContent`
)->tag( n = `Text` ns = `m`
)->a( n = `text` v = `Senior Developer`
)->end(
)->ele( `snappedContent`
)->tag( n = `Text` ns = `m`
)->a( n = `text` v = `Senior Developer`
)->end(
)->ele( `actions`
)->tag( `ObjectPageHeaderActionButton`
)->a( n = `text` v = `Edit`
)->a( n = `type` v = `Emphasized`
)->a( n = `hideText` v = `false`
)->tag( `ObjectPageHeaderActionButton`
)->a( n = `type` v = `Transparent`
)->a( n = `text` v = `Delete`
)->a( n = `hideText` v = `false`
)->a( n = `hideIcon` v = `true`
)->tag( `ObjectPageHeaderActionButton`
)->a( n = `type` v = `Transparent`
)->a( n = `text` v = `Copy`
)->a( n = `hideText` v = `false`
)->a( n = `hideIcon` v = `true`
)->tag( `ObjectPageHeaderActionButton`
)->a( n = `type` v = `Transparent`
)->a( n = `text` v = `Add`
)->a( n = `hideText` v = `false`
)->a( n = `hideIcon` v = `true`
)->tag( `ObjectPageHeaderActionButton`
)->a( n = `icon` v = `sap-icon://action`
)->a( n = `type` v = `Transparent`
)->a( n = `text` v = `Share`
)->a( n = `tooltip` v = `action`
)->end(
)->ele( `navigationActions`
)->tag( `ObjectPageHeaderActionButton`
)->a( n = `icon` v = `sap-icon://slim-arrow-up`
)->a( n = `type` v = `Transparent`
)->a( n = `tooltip` v = `slim-arrow-up`
)->tag( `ObjectPageHeaderActionButton`
)->a( n = `icon` v = `sap-icon://slim-arrow-down`
)->a( n = `type` v = `Transparent`
)->a( n = `tooltip` v = `slim-arrow-down`
)->end(
)->ele( `content`
)->tag( n = `GenericTag` ns = `m`
)->a( n = `text` v = `Material Shortage`
)->a( n = `status` v = `Warning`
)->end(
)->end(
)->end(
)->ele( `headerContent`
)->ele( n = `HorizontalLayout` ns = `layout`
)->a( n = `allowWrapping` v = `true`
)->ele( n = `VerticalLayout` ns = `layout`
)->a( n = `class` v = `sapUiMediumMarginEnd`
)->tag( n = `ObjectAttribute` ns = `m`
)->a( n = `title` v = `Location`
)->a( n = `text` v = `Warehouse A`
)->tag( n = `ObjectAttribute` ns = `m`
)->a( n = `title` v = `Halway`
)->a( n = `text` v = `23L`
)->tag( n = `ObjectAttribute` ns = `m`
)->a( n = `title` v = `Rack`
)->a( n = `text` v = `34`
)->end(
)->ele( n = `VerticalLayout` ns = `layout`
)->tag( n = `ObjectAttribute` ns = `m`
)->a( n = `title` v = `Availability`
)->tag( n = `ObjectStatus` ns = `m`
)->a( n = `text` v = `In Stock`
)->a( n = `state` v = `Success`
)->end(
)->end(
)->end(
)->ele( `sections`
)->ele( `ObjectPageSection`
)->a( n = `titleUppercase` v = `false`
)->a( n = `id` v = `section1`
)->a( n = `title` v = `Section 1`
)->ele( `subSections`
)->ele( `ObjectPageSubSection`
)->a( n = `id` v = `section1_SS1`
)->a( n = `title` v = `Subsection 1.1`
)->a( n = `titleUppercase` v = `false`
)->ele( `blocks`
)->ele( n = `SimpleForm` ns = `forms`
)->a( n = `class` v = `smpcBlockFont`
)->a( n = `maxContainerCols` v = `2`
)->a( n = `layout` v = `ResponsiveGridLayout`
)->a( n = `editable` v = `false`
)->tag( n = `Label` ns = `m`
)->a( n = `text` v = `Content`
)->tag( n = `Text` ns = `m`
)->a( n = `text` v = `some content goes here...`
)->end(
)->end(
)->end(
)->ele( `ObjectPageSubSection`
)->a( n = `id` v = `section1_SS2`
)->a( n = `title` v = `Subsection 1.2`
)->a( n = `titleUppercase` v = `false`
)->ele( `blocks`
)->ele( n = `SimpleForm` ns = `forms`
)->a( n = `class` v = `smpcBlockFont`
)->a( n = `maxContainerCols` v = `2`
)->a( n = `layout` v = `ResponsiveGridLayout`
)->a( n = `editable` v = `false`
)->tag( n = `Label` ns = `m`
)->a( n = `text` v = `Content`
)->tag( n = `Text` ns = `m`
)->a( n = `text` v = `some content goes here...`
)->end(
)->end(
)->end(
)->end(
)->end(
)->ele( `ObjectPageSection`
)->a( n = `titleUppercase` v = `false`
)->a( n = `id` v = `section2`
)->a( n = `title` v = `Section 2`
)->end(
)->ele( `ObjectPageSection`
)->a( n = `titleUppercase` v = `false`
)->a( n = `id` v = `section3`
)->a( n = `title` v = `Section 3`
)->ele( `subSections`
)->ele( `ObjectPageSubSection`
)->a( n = `id` v = `section3_SS1`
)->a( n = `title` v = ` `
)->a( n = `titleUppercase` v = `false`
)->ele( `blocks`
)->ele( n = `SimpleForm` ns = `forms`
)->a( n = `class` v = `smpcBlockFont`
)->a( n = `maxContainerCols` v = `2`
)->a( n = `layout` v = `ResponsiveGridLayout`
)->a( n = `editable` v = `false`
)->tag( n = `Label` ns = `m`
)->a( n = `text` v = `Content`
)->tag( n = `Text` ns = `m`
)->a( n = `text` v = `some content goes here...`
)->end(
)->end(
)->end(
)->end(
)->end(
)->ele( `ObjectPageSection`
)->a( n = `titleUppercase` v = `false`
)->a( n = `id` v = `section4`
)->a( n = `title` v = `Section 4`
)->ele( `subSections`
)->ele( `ObjectPageSubSection`
)->a( n = `id` v = `section4_SS1`
)->a( n = `title` v = `Subsection 4.1`
)->a( n = `titleUppercase` v = `false`
)->ele( `blocks`
)->ele( n = `SimpleForm` ns = `forms`
)->a( n = `class` v = `smpcBlockFont`
)->a( n = `maxContainerCols` v = `2`
)->a( n = `layout` v = `ResponsiveGridLayout`
)->a( n = `editable` v = `false`
)->tag( n = `Label` ns = `m`
)->a( n = `text` v = `Content`
)->tag( n = `Text` ns = `m`
)->a( n = `text` v = `some content goes here...`
)->end(
)->end(
)->end(
)->end(
)->end(
)->ele( `ObjectPageSection`
)->a( n = `titleUppercase` v = `false`
)->a( n = `id` v = `section5`
)->a( n = `title` v = `Section 5`
)->ele( `subSections`
)->ele( `ObjectPageSubSection`
)->a( n = `id` v = `section5_SS1`
)->a( n = `title` v = ` `
)->a( n = `titleUppercase` v = `false`
)->ele( `blocks`
)->ele( n = `SimpleForm` ns = `forms`
)->a( n = `class` v = `smpcBlockFont`
)->a( n = `maxContainerCols` v = `2`
)->a( n = `layout` v = `ResponsiveGridLayout`
)->a( n = `editable` v = `false`
)->tag( n = `Label` ns = `m`
)->a( n = `text` v = `Content`
)->tag( n = `Text` ns = `m`
)->a( n = `text` v = `some content goes here...`
)->end(
)->end(
)->end(
)->end(
)->end(
)->ele( `ObjectPageSection`
)->a( n = `titleUppercase` v = `false`
)->a( n = `id` v = `section6`
)->a( n = `title` v = `Section 6`
)->ele( `subSections`
)->ele( `ObjectPageSubSection`
)->a( n = `id` v = `section6_SS1`
)->a( n = `title` v = ` `
)->a( n = `titleUppercase` v = `false`
)->ele( `blocks`
)->ele( n = `SimpleForm` ns = `forms`
)->a( n = `class` v = `smpcBlockFont`
)->a( n = `maxContainerCols` v = `2`
)->a( n = `layout` v = `ResponsiveGridLayout`
)->a( n = `editable` v = `false`
)->tag( n = `Label` ns = `m`
)->a( n = `text` v = `Content`
)->tag( n = `Text` ns = `m`
)->a( n = `text` v = `some content goes here...`
)->end(
)->end(
)->end(
)->end(
)->end(
)->ele( `ObjectPageSection`
)->a( n = `titleUppercase` v = `false`
)->a( n = `id` v = `section7`
)->a( n = `title` v = `Section 7`
)->ele( `subSections`
)->ele( `ObjectPageSubSection`
)->a( n = `id` v = `section7_SS1`
)->a( n = `title` v = ` `
)->a( n = `titleUppercase` v = `false`
)->ele( `blocks`
)->ele( n = `SimpleForm` ns = `forms`
)->a( n = `class` v = `smpcBlockFont`
)->a( n = `maxContainerCols` v = `2`
)->a( n = `layout` v = `ResponsiveGridLayout`
)->a( n = `editable` v = `false`
)->tag( n = `Label` ns = `m`
)->a( n = `text` v = `Content`
)->tag( n = `Text` ns = `m`
)->a( n = `text` v = `some content goes here...`
)->end(
)->end(
)->end(
)->end(
)->end(
)->ele( `ObjectPageSection`
)->a( n = `titleUppercase` v = `false`
)->a( n = `title` v = `Section 8`
)->ele( `subSections`
)->ele( `ObjectPageSubSection`
)->a( n = `title` v = ` `
)->a( n = `titleUppercase` v = `false`
)->ele( `blocks`
)->ele( n = `SimpleForm` ns = `forms`
)->a( n = `class` v = `smpcBlockFont`
)->a( n = `maxContainerCols` v = `2`
)->a( n = `layout` v = `ResponsiveGridLayout`
)->a( n = `editable` v = `false`
)->tag( n = `Label` ns = `m`
)->a( n = `text` v = `Content`
)->tag( n = `Text` ns = `m`
)->a( n = `text` v = `some content goes here...`
)->end(
)->end(
)->end(
)->end(
)->end(
)->ele( `ObjectPageSection`
)->a( n = `titleUppercase` v = `false`
)->a( n = `title` v = `Section 9`
)->ele( `subSections`
)->ele( `ObjectPageSubSection`
)->a( n = `title` v = ` `
)->a( n = `titleUppercase` v = `false`
)->ele( `blocks`
)->ele( n = `SimpleForm` ns = `forms`
)->a( n = `class` v = `smpcBlockFont`
)->a( n = `maxContainerCols` v = `2`
)->a( n = `layout` v = `ResponsiveGridLayout`
)->a( n = `editable` v = `false`
)->tag( n = `Label` ns = `m`
)->a( n = `text` v = `Content`
)->tag( n = `Text` ns = `m`
)->a( n = `text` v = `some content goes here...`
)->end(
)->end(
)->end(
)->end(
)->end(
)->ele( `ObjectPageSection`
)->a( n = `titleUppercase` v = `false`
)->a( n = `title` v = `Section 10`
)->ele( `subSections`
)->ele( `ObjectPageSubSection`
)->a( n = `title` v = ` `
)->a( n = `titleUppercase` v = `false`
)->ele( `blocks`
)->ele( n = `SimpleForm` ns = `forms`
)->a( n = `class` v = `smpcBlockFont`
)->a( n = `maxContainerCols` v = `2`
)->a( n = `layout` v = `ResponsiveGridLayout`
)->a( n = `editable` v = `false`
)->tag( n = `Label` ns = `m`
)->a( n = `text` v = `Content`
)->tag( n = `Text` ns = `m`
)->a( n = `text` v = `some content goes here...`
)->end(
)->end(
)->end(
)->end(
)->end(
)->ele( `ObjectPageSection`
)->a( n = `titleUppercase` v = `false`
)->a( n = `title` v = `Section 11`
)->ele( `subSections`
)->ele( `ObjectPageSubSection`
)->a( n = `title` v = ` `
)->a( n = `titleUppercase` v = `false`
)->ele( `blocks`
)->ele( n = `SimpleForm` ns = `forms`
)->a( n = `class` v = `smpcBlockFont`
)->a( n = `maxContainerCols` v = `2`
)->a( n = `layout` v = `ResponsiveGridLayout`
)->a( n = `editable` v = `false`
)->tag( n = `Label` ns = `m`
)->a( n = `text` v = `Content`
)->tag( n = `Text` ns = `m`
)->a( n = `text` v = `some content goes here...`
)->end(
)->end(
)->end(
)->end(
)->end(
)->ele( `ObjectPageSection`
)->a( n = `titleUppercase` v = `false`
)->a( n = `title` v = `Section 12`
)->ele( `subSections`
)->ele( `ObjectPageSubSection`
)->a( n = `title` v = ` `
)->a( n = `titleUppercase` v = `false`
)->ele( `blocks`
)->ele( n = `SimpleForm` ns = `forms`
)->a( n = `class` v = `smpcBlockFont`
)->a( n = `maxContainerCols` v = `2`
)->a( n = `layout` v = `ResponsiveGridLayout`
)->a( n = `editable` v = `false`
)->tag( n = `Label` ns = `m`
)->a( n = `text` v = `Content`
)->tag( n = `Text` ns = `m`
)->a( n = `text` v = `some content goes here...`
)->end(
)->end(
)->end(
)->end(
)->end(
)->ele( `ObjectPageSection`
)->a( n = `titleUppercase` v = `false`
)->a( n = `title` v = `Section 13`
)->ele( `subSections`
)->ele( `ObjectPageSubSection`
)->a( n = `title` v = ` `
)->a( n = `titleUppercase` v = `false`
)->ele( `blocks`
)->ele( n = `SimpleForm` ns = `forms`
)->a( n = `class` v = `smpcBlockFont`
)->a( n = `maxContainerCols` v = `2`
)->a( n = `layout` v = `ResponsiveGridLayout`
)->a( n = `editable` v = `false`
)->tag( n = `Label` ns = `m`
)->a( n = `text` v = `Content`
)->tag( n = `Text` ns = `m`
)->a( n = `text` v = `some content goes here...`
)->end(
)->end(
)->end(
)->end(
)->end(
)->ele( `ObjectPageSection`
)->a( n = `titleUppercase` v = `false`
)->a( n = `title` v = `Section 14`
)->ele( `subSections`
)->ele( `ObjectPageSubSection`
)->a( n = `title` v = ` `
)->a( n = `titleUppercase` v = `false`
)->ele( `blocks`
)->ele( n = `SimpleForm` ns = `forms`
)->a( n = `class` v = `smpcBlockFont`
)->a( n = `maxContainerCols` v = `2`
)->a( n = `layout` v = `ResponsiveGridLayout`
)->a( n = `editable` v = `false`
)->tag( n = `Label` ns = `m`
)->a( n = `text` v = `Content`
)->tag( n = `Text` ns = `m`
)->a( n = `text` v = `some content goes here...`
)->end(
)->end(
)->end(
)->end(
)->end(
)->ele( `ObjectPageSection`
)->a( n = `titleUppercase` v = `false`
)->a( n = `title` v = `Section 15`
)->ele( `subSections`
)->ele( `ObjectPageSubSection`
)->a( n = `title` v = ` `
)->a( n = `titleUppercase` v = `false`
)->ele( `blocks`
)->ele( n = `SimpleForm` ns = `forms`
)->a( n = `class` v = `smpcBlockFont`
)->a( n = `maxContainerCols` v = `2`
)->a( n = `layout` v = `ResponsiveGridLayout`
)->a( n = `editable` v = `false`
)->tag( n = `Label` ns = `m`
)->a( n = `text` v = `Content`
)->tag( n = `Text` ns = `m`
)->a( n = `text` v = `some content goes here...`
)->end(
)->end(
)->end(
)->end(
)->end( ).
client->view_display( view->stringify( ) ).
ENDMETHOD.
ENDCLASS.
More in sap.uxap
- Navigation to Section sample — This example shows how to change the default behavior in order to be able to navigate to…
- Object Page Header Content Priorities — The sample shows how to set priorities of the ObjectPageHeader content items by using the…
- ObjectPage with Hidden Section Titles — ObjectPage sample that demonstrates the combination of header facets and showTitle proper…
- ObjectPageHeaderContent — This is an example of an ObjectPageHeaderContent.
- Standard Fiori ObjectPageHeader — This is an example of an ObjectPageHeader containing mainly KPIs.
- Bound Model Mapping — Use of dynamic bound model mapping
- Subsection with hidden title — Example of a subsection with showTitle property set to false.
- Object Page with Translucent backgroundDesign — This example demonstrates ObjectPage with ObjectPageDynamicHeaderTitle with Solid backgro…
- Object Page Header with Progress Indicator and Rating Indicator — ObjectPage sample with header content arranged using containers, called facets, ProgressI…
- ObjectPage with HeaderContent always shown on desktop — This is an example of an ObjectPage with property alwaysShowContentHeader set to true. In…
- Object Page with Title on the left — Object Page sample showing a layout with subsection titles on the left.
- Object Page with Responsive Avatar — ObjectPage sample demonstrating the breakpointChange event to adjust Avatar sizes respons…
On this page