ObjectPage with DynamicSideContent Button
The sample shows Object Page inside a main content of DynamicSideContent. The ObjectPageHeader has property DynamicSideContentButton set to true which is used to show the side panel of DynamicSideContent.
Z2UI5_CL_SMPC_APP_417
The facts
- Repository
- abap2UI5/samples-controls
- Class
Z2UI5_CL_SMPC_APP_417- Source file
z2ui5_cl_smpc_app_417.clas.abap↗- Library
- sap.uxap
- UI5 entity
sap.uxap.ObjectPageHeader- Demo kit sample
sap.uxap.sample.ObjectPageDynamicSideContentBtn- 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: objectpageheader, object, header, sap.uxap, objectpagedynamicsidecontentbtn, html, dynamicsidecontent, objectpagelayout, button, objectpageheaderactionbutton, verticallayout, link
Controls it builds
- sap.m.Button
- sap.m.Image
- sap.m.Label
- sap.m.Link
- sap.m.ProgressIndicator
- sap.m.Text
- sap.m.Title
- sap.m.Toolbar
- sap.m.ToolbarSpacer
- sap.ui.core.HTML
- sap.ui.core.mvc.View
- sap.ui.layout.DynamicSideContent
- sap.ui.layout.HorizontalLayout
- sap.ui.layout.VerticalLayout
- sap.uxap.ObjectPageHeader
- 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
Nothing is installed and nothing is sent anywhere: the ABAP is compiled to JavaScript in this browser and runs against abap2UI5 itself.
The ABAP
" @keywords objectpageheader object header sap.uxap objectpagedynamicsidecontentbtn html dynamicsidecontent objectpagelayout button objectpageheaderactionbutton verticallayout link
" @summary The sample shows Object Page inside a main content of DynamicSideContent. The ObjectPageHeader has property DynamicSideContentButton set to true which is used to show the side panel of DynamicSideContent.
CLASS z2ui5_cl_smpc_app_417 DEFINITION PUBLIC.
PUBLIC SECTION.
INTERFACES z2ui5_if_app.
DATA show_side TYPE abap_bool.
DATA open_btn_visible TYPE abap_bool.
PROTECTED SECTION.
DATA client TYPE REF TO z2ui5_if_client.
DATA breakpoint TYPE string.
METHODS view_display.
METHODS on_event.
" is the DynamicSideContent at breakpoint S right now?
METHODS at_breakpoint_s
RETURNING VALUE(result) TYPE abap_bool.
PRIVATE SECTION.
ENDCLASS.
CLASS z2ui5_cl_smpc_app_417 IMPLEMENTATION.
METHOD z2ui5_if_app~main.
me->client = client.
IF client->check_on_init( ).
" the original view starts with showSideContent="false"; the open button
" is visible until the side content is shown (updateToggleButtonState)
show_side = abap_false.
open_btn_visible = abap_true.
view_display( ).
ELSEIF client->check_on_navigated( ).
view_display( ).
ELSEIF client->check_on_event( ).
on_event( ).
ENDIF.
ENDMETHOD.
METHOD view_display.
DATA(view) = z2ui5_cl_ui5_view_builder=>factory( ).
" the controller's ObjectPageModel (SharedJSONData employee.json) is never
" bound by any control in this view, so no model is seeded; the side
" content and the open button are driven through two-way bound properties
" instead of the controller's imperative setters. style.css is injected as
" a core:HTML style leaf.
view->ele( n = `View` ns = `mvc`
)->a( n = `height` v = `100%`
)->a( n = `xmlns` v = `sap.uxap`
)->a( n = `xmlns:l` v = `sap.ui.layout`
)->a( n = `xmlns:mvc` v = `sap.ui.core.mvc`
)->a( n = `xmlns:m` v = `sap.m`
)->a( n = `xmlns:core` v = `sap.ui.core`
)->tag( n = `HTML` ns = `core`
)->a( n = `content` v = `<style>.sapUiTheme-sap_bluecrystal .sapUiDSC \{ background-color: rgb(242, 248, 252); \}</style>`
)->ele( n = `DynamicSideContent` ns = `l`
)->a( n = `id` v = `DynamicSideContent`
)->a( n = `class` v = `sapUiDSCExplored`
)->a( n = `sideContentFallDown` v = `BelowM`
)->a( n = `sideContentPosition` v = `End`
)->a( n = `containerQuery` v = `true`
)->a( n = `showSideContent` v = client->_bind( show_side )
)->a( n = `breakpointChanged` v = client->_event( val = `BP_CHANGED` arg = `${$parameters>/currentBreakpoint}` )
)->ele( n = `mainContent` ns = `l`
)->ele( `ObjectPageLayout`
)->a( n = `id` v = `ObjectPageLayout`
)->a( n = `showTitleInHeaderContent` v = `true`
)->a( n = `upperCaseAnchorBar` v = `false`
)->ele( `headerTitle`
)->ele( `ObjectPageHeader`
)->a( n = `id` v = `headerForTest`
)->a( n = `objectTitle` v = `Denise Smith`
)->a( n = `showTitleSelector` v = `true`
)->a( n = `showMarkers` v = `true`
)->a( n = `markFavorite` v = `true`
)->a( n = `markFlagged` v = `true`
)->a( n = `objectSubtitle` v = `Senior Developer`
)->a( n = `objectImageURI` v = `https://sdk.openui5.org/test-resources/sap/uxap/images/imageID_273624.png`
)->a( n = `objectImageShape` v = `Circle`
)->a( n = `isObjectTitleAlwaysVisible` v = `false`
)->a( n = `isObjectSubtitleAlwaysVisible` v = `false`
)->ele( `sideContentButton`
" the controller hides this button while the side content is open
" (setVisible) - here that state is the bound visible flag
)->tag( n = `Button` ns = `m`
)->a( n = `id` v = `openSideContentBtn`
)->a( n = `icon` v = `sap-icon://detail-view`
)->a( n = `type` v = `Transparent`
)->a( n = `press` v = client->_event( `OPEN_SIDE_CONTENT` )
)->a( n = `tooltip` v = `detail-view`
)->a( n = `visible` v = client->_bind( open_btn_visible )
)->end(
)->ele( `actions`
)->tag( `ObjectPageHeaderActionButton`
)->a( n = `text` v = `Public Profile`
)->a( n = `icon` v = `sap-icon://edit`
)->a( n = `tooltip` v = `edit`
)->tag( `ObjectPageHeaderActionButton`
)->a( n = `text` v = `Take Action`
)->a( n = `icon` v = `sap-icon://action`
)->a( n = `tooltip` v = `action`
)->end(
)->end(
)->end(
)->ele( `headerContent`
)->ele( n = `VerticalLayout` ns = `l`
)->tag( n = `Link` ns = `m`
)->a( n = `text` v = `denise-smith`
)->tag( n = `Label` ns = `m`
)->a( n = `text` v = `(321) 123-4567`
)->tag( n = `Link` ns = `m`
)->a( n = `text` v = `DeniseSmith@sap.com`
)->ele( n = `HorizontalLayout` ns = `l`
)->tag( n = `Image` ns = `m`
)->a( n = `height` v = `24px`
)->a( n = `width` v = `24px`
)->a( n = `src` v = `https://sdk.openui5.org/test-resources/sap/uxap/images/twitterIcon.png`
)->tag( n = `Image` ns = `m`
)->a( n = `height` v = `24px`
)->a( n = `width` v = `24px`
)->a( n = `src` v = `https://sdk.openui5.org/test-resources/sap/uxap/images/linkedInIcon.png`
)->end(
)->end(
)->tag( n = `Text` ns = `m`
)->a( n = `width` v = `200px`
)->a( n = `text` v = `Hi, I'm Denise. I am passionate about what I do and I'll go the extra mile to make the customer win.`
)->ele( n = `VerticalLayout` ns = `l`
)->tag( n = `Label` ns = `m`
)->a( n = `text` v = `Profile completion`
)->tag( n = `ProgressIndicator` ns = `m`
)->a( n = `percentValue` v = `30`
)->a( n = `displayValue` v = `30%`
)->a( n = `showValue` v = `true`
)->a( n = `state` v = `None`
)->end(
)->end(
)->ele( `sections`
)->ele( `ObjectPageSection`
)->a( n = `titleUppercase` v = `false`
)->a( n = `title` v = `2014 Goals Plan`
)->ele( `subSections`
)->ele( `ObjectPageSubSection`
)->a( n = `titleUppercase` v = `false`
)->tag( n = `Text` ns = `m`
)->a( n = `width` v = `200px`
)->a( n = `text` v = `Hi, I'm Denise. I am passionate about what I do and I'll go the extra mile to make the customer win.`
)->end(
)->end(
)->end(
)->ele( `ObjectPageSection`
)->a( n = `titleUppercase` v = `false`
)->a( n = `title` v = `Personal`
)->ele( `subSections`
)->ele( `ObjectPageSubSection`
)->a( n = `title` v = `Connect`
)->a( n = `titleUppercase` v = `false`
)->tag( n = `Text` ns = `m`
)->a( n = `width` v = `200px`
)->a( n = `text` v = `Hi, I'm Denise. I am passionate about what I do and I'll go the extra mile to make the customer win.`
)->end(
" the original's blocks and moreBlocks aggregation tags are empty
" and are not written - aggregations are optional in XML
)->tag( `ObjectPageSubSection`
)->a( n = `id` v = `paymentSubSection`
)->a( n = `title` v = `Payment information`
)->a( n = `titleUppercase` v = `false`
)->end(
)->end(
)->end(
)->end(
)->end(
)->ele( n = `sideContent` ns = `l`
)->ele( n = `Toolbar` ns = `m`
)->tag( n = `Title` ns = `m`
)->a( n = `text` v = `My tasks`
)->tag( n = `ToolbarSpacer` ns = `m`
)->tag( n = `Button` ns = `m`
)->a( n = `id` v = `closeSideContentBtn`
)->a( n = `text` v = `Close`
)->a( n = `type` v = `Transparent`
)->a( n = `press` v = client->_event( `CLOSE_SIDE_CONTENT` )
)->end(
)->tag( n = `Text` ns = `m`
)->a( n = `text` v = ` Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco ` &&
`laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non ` &&
`proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna ` &&
`aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum ` &&
`dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Lorem ipsum dolor sit amet, consectetur ` &&
`adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo ` &&
`consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia ` &&
`deserunt mollit anim id est laborum. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, ` &&
`quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. ` &&
`Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor ` &&
`incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in ` &&
`reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. ` &&
`Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco ` &&
`laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non ` &&
`proident, sunt in culpa qui officia deserunt mollit anim id est laborum.` ).
client->view_display( view->stringify( ) ).
ENDMETHOD.
METHOD at_breakpoint_s.
" The original keeps sCurrentBreakpoint fresh in onAfterRendering AND in
" handleBreakpointChange, and reads it at press time. The port only had the
" event half, and that half provably never fires on the first measurement:
" _setBreakpointFromWidth guards the fire with `if (sCurrentBreakpoint !==
" undefined)` and _currentBreakpoint is undefined until that very call. So
" an app OPENED at a small viewport - a phone, where nothing ever resizes -
" kept breakpoint initial forever and both handlers took their non-S leg,
" which is exactly the dead end the S branch exists to avoid.
" The window width closes it without a new wire: the framework mirrors the
" client's device data server-side and refreshes it every round trip, and
" 720 is the control's own S_M_BREAKPOINT. containerQuery is true here, so
" the control measures its CONTAINER - which can never be wider than the
" window, so window <= 720 implies breakpoint S. The converse (a wide
" window whose container is narrow) is what the breakpointChanged event
" still reports, which is why that wire stays and is consulted first.
IF breakpoint IS NOT INITIAL.
result = xsdbool( breakpoint = `S` ).
RETURN.
ENDIF.
result = xsdbool( client->get( )-s_device-resize-width <= 720 ).
ENDMETHOD.
METHOD on_event.
CASE client->get_event( ).
WHEN `BP_CHANGED`.
" updateToggleButtonState: the open button shows on breakpoint S
" or while the side content is hidden
breakpoint = client->get_event_arg( ).
open_btn_visible = xsdbool( breakpoint = `S` OR show_side = abap_false ).
WHEN `OPEN_SIDE_CONTENT`.
" handleSCBtnPress branches on the breakpoint: toggle( ) on S, the
" setShowSideContent setter everywhere else. Both legs used to fold
" into the bound flip here, and on S that could never work -
" setShowSideContent re-derives the private visibility pair through
" _setResizeData( S ), which sets _SCVisible back to
" sideContentVisibility = AlwaysShow (false, the default is ShowAboveS)
" and _MCVisible to true, so the main content stays and the side
" content never appears. toggle( ) is the branch that swaps them. The
" same defect as apps 344/138, and worse here: the open button hides
" itself in the same round-trip and SET_FOCUS targets a button inside
" the side content that never came up.
IF at_breakpoint_s( ) = abap_true.
client->follow_up_action( val = client->cs_event-control_by_id
t_arg = VALUE #( ( `DynamicSideContent` ) ( `toggle` ) ) ).
ELSE.
show_side = abap_true.
ENDIF.
open_btn_visible = abap_false.
client->follow_up_action( val = client->cs_event-set_focus
t_arg = VALUE #( ( `closeSideContentBtn` ) ) ).
WHEN `CLOSE_SIDE_CONTENT`.
" handleSideContentHide hides the side content, shows the open button
" again and moves the focus back to it - and it branches on the
" breakpoint exactly like handleSCBtnPress does, which the port did not
" reproduce until 2026-08-24. It matters beyond the close itself:
" toggle( ) reaches its swap through setShowSideContent( true, true ),
" so the PROPERTY stays true, while setShowSideContent( false ) leaves
" it false. After a close at S and a resize up to M/L the original's
" isSideContentVisible( ) therefore still reports true and the side
" content comes back; with the unconditional false it stayed hidden
" next to a re-shown open button.
IF at_breakpoint_s( ) = abap_true.
client->follow_up_action( val = client->cs_event-control_by_id
t_arg = VALUE #( ( `DynamicSideContent` ) ( `toggle` ) ) ).
ELSE.
show_side = abap_false.
ENDIF.
open_btn_visible = abap_true.
client->follow_up_action( val = client->cs_event-set_focus
t_arg = VALUE #( ( `openSideContentBtn` ) ) ).
ENDCASE.
ENDMETHOD.
ENDCLASS.
More in sap.uxap
- Model Mapping — Use of dynamic model mapping
- Object Page Header with Links, Rating Indicator, and Object Status — ObjectPage sample with header content arranged using containers, called facets, Links, Ra…
- ObjectPageHeader with placeholder — This is an example of ObjectPageHeader using the showPlaceholder property.
- ObjectPageHeader options — This is a different example of ObjectPageHeader hiding the headerTitle area entirely unti…
- ObjectPageHeader with all controls — This is an example of an ObjectPageHeader containing all possible controls in it.
- ObjectPage as a child page — This is an example of an ObjectPage Child page.
- Object Page AnchorBar — AnchorBar has a different behavior based on the device
- Object Page AnchorBar with numbers — This example shows how to visualize numbers in parenthesis after the corresponding sectio…
- Object Page demonstrating beforeNavigate event — Object Page demonstrating how beforeNavigate event can be used to prevent default navigat…
- Object Page with blocks of different view types — ObjectPage sample with blocks that use different view types
- ObjectPage with first editable input — Object Page that focuses its first editable input in the currently selected section.
- ObjectPage with forms — Object Page automatically adjusts form layout to match block column layout