Segmented Button
The Segmented Button allows the user to pick one out of many options for displaying the content of the current page. It is a UI pattern from iOS, now also available for other platforms.
Z2UI5_CL_SMPC_APP_047
Controls
sap.m
UI5 1.71
The facts
- Repository
- abap2UI5/samples-controls
- Class
Z2UI5_CL_SMPC_APP_047- Source file
z2ui5_cl_smpc_app_047.clas.abap↗- Library
- sap.m
- UI5 entity
sap.m.SegmentedButton- Demo kit sample
sap.m.sample.SegmentedButton- 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: segmentedbutton, segmented, button, sap.m, allows, user, overflowtoolbar, toolbarspacer, segmentedbuttonitem, vbox, label, text
Controls it builds
- sap.m.Label
- sap.m.OverflowToolbar
- sap.m.Page
- sap.m.SegmentedButton
- sap.m.SegmentedButtonItem
- sap.m.Text
- sap.m.ToolbarSpacer
- sap.m.VBox
- sap.ui.core.mvc.View
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_047.clas.abap — 188 lines
Click a number to link to a line — shift-click for a range.
Read it on GitHub ↗
" @keywords segmentedbutton segmented button sap.m allows user overflowtoolbar toolbarspacer segmentedbuttonitem vbox label text
" @summary The Segmented Button allows the user to pick one out of many options for displaying the content of the current page. It is a UI pattern from iOS, now also available for other platforms.
CLASS z2ui5_cl_smpc_app_047 DEFINITION PUBLIC.
PUBLIC SECTION.
INTERFACES z2ui5_if_app.
DATA selected_item_text TYPE string.
DATA selected_key TYPE string VALUE `one`.
PROTECTED SECTION.
DATA client TYPE REF TO z2ui5_if_client.
METHODS view_display.
METHODS on_event.
PRIVATE SECTION.
ENDCLASS.
CLASS z2ui5_cl_smpc_app_047 IMPLEMENTATION.
METHOD z2ui5_if_app~main.
me->client = client.
IF 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( ).
view->ele( n = `View` ns = `mvc`
)->a( n = `height` v = `100%`
)->a( n = `xmlns` v = `sap.m`
)->a( n = `xmlns:mvc` v = `sap.ui.core.mvc`
)->ele( `Page`
)->a( n = `showHeader` v = `false`
)->a( n = `class` v = `sapUiContentPadding`
)->ele( `subHeader`
)->ele( `OverflowToolbar`
)->tag( `ToolbarSpacer`
)->ele( `SegmentedButton`
)->a( n = `selectedKey` v = `kids`
)->ele( `items`
)->tag( `SegmentedButtonItem`
)->a( n = `text` v = `Kids`
)->a( n = `key` v = `kids`
)->tag( `SegmentedButtonItem`
)->a( n = `text` v = `Adults`
)->tag( `SegmentedButtonItem`
)->a( n = `text` v = `Seniors`
)->end(
)->end(
)->tag( `ToolbarSpacer`
)->end(
)->end(
)->ele( `VBox`
)->a( n = `width` v = `100%`
)->ele( `SegmentedButton`
)->a( n = `selectedKey` v = `satellite`
)->a( n = `class` v = `sapUiSmallMarginBottom`
)->ele( `items`
)->tag( `SegmentedButtonItem`
)->a( n = `text` v = `Map`
)->tag( `SegmentedButtonItem`
)->a( n = `text` v = `Satellite`
)->a( n = `key` v = `satellite`
)->tag( `SegmentedButtonItem`
)->a( n = `text` v = `Hybrid`
)->end(
)->end(
)->ele( `SegmentedButton`
)->a( n = `selectedKey` v = `competitor`
)->a( n = `class` v = `sapUiSmallMarginBottom`
)->ele( `items`
)->tag( `SegmentedButtonItem`
)->a( n = `icon` v = `sap-icon://taxi`
)->tag( `SegmentedButtonItem`
)->a( n = `icon` v = `sap-icon://lab`
)->tag( `SegmentedButtonItem`
)->a( n = `icon` v = `sap-icon://competitor`
)->a( n = `key` v = `competitor`
)->end(
)->end(
)->ele( `SegmentedButton`
)->a( n = `class` v = `sapUiSmallMarginBottom`
)->ele( `items`
)->tag( `SegmentedButtonItem`
)->a( n = `text` v = `Selected`
)->tag( `SegmentedButtonItem`
)->a( n = `text` v = `Enabled`
)->tag( `SegmentedButtonItem`
)->a( n = `text` v = `Disabled`
)->a( n = `enabled` v = `false`
)->end(
)->end(
)->tag( `Label`
)->a( n = `text` v = `Fire selectionChange event`
" selectedKey two-way bound + item keys (port addition) - selection read server-side without a private event path
)->ele( `SegmentedButton`
)->a( n = `id` v = `SB1`
)->a( n = `selectedKey` v = client->_bind( selected_key )
)->a( n = `selectionChange` v = client->_event( `SELECTION_CHANGE` )
)->ele( `items`
)->tag( `SegmentedButtonItem`
)->a( n = `key` v = `one`
)->a( n = `text` v = `One`
)->tag( `SegmentedButtonItem`
)->a( n = `key` v = `two`
)->a( n = `text` v = `Two`
)->tag( `SegmentedButtonItem`
)->a( n = `key` v = `three`
)->a( n = `text` v = `Three`
)->end(
)->end(
)->tag( `Text`
)->a( n = `id` v = `selectedItemPreview`
)->a( n = `text` v = client->_bind( selected_item_text )
)->end(
)->ele( `footer`
)->ele( `OverflowToolbar`
)->tag( `ToolbarSpacer`
)->ele( `SegmentedButton`
)->a( n = `selectedKey` v = `small`
)->ele( `items`
)->tag( `SegmentedButtonItem`
)->a( n = `text` v = `Small`
)->a( n = `key` v = `small`
)->tag( `SegmentedButtonItem`
)->a( n = `text` v = `Medium`
)->tag( `SegmentedButtonItem`
)->a( n = `text` v = `Large`
)->end(
)->end(
)->tag( `ToolbarSpacer`
)->end(
)->end( ).
client->view_display( view->stringify( ) ).
ENDMETHOD.
METHOD on_event.
IF client->get_event( ) = `SELECTION_CHANGE`.
" map the two-way bound key back to the item text
DATA(text) = SWITCH string( selected_key
WHEN `one` THEN `One`
WHEN `two` THEN `Two`
WHEN `three` THEN `Three` ).
client->message_toast_display( |oEvent.getParameter('item').getText(): '{ text }' selected| ).
selected_item_text = |getSelectedItem(): { text }|.
ENDIF.
ENDMETHOD.
ENDCLASS.
More in sap.m
- Object Header — This is a Object Header which displays the basic information about objects similar to the…
- Object Status — The object status is a small building block representing a status with a semantic color.
- Panel - Expand / Collapse — Panels also have the possibility to expand/collapse their content (including the infoTool…
- PDF Viewer - Popup — A PDF viewer opening as a popup dialog.
- RangeSlider — With the RangeSlider a user can specify range from a numerical interval.
- Scroll Container — The Scroll Container is a control that can display arbitrary content within a limited scr…
- Select — Illustrates the usage of a Select in header, footer and content of a page. Note the diffe…
- StepInput — The StepInput allows the user to change stepwise a value by a predefined step and also to…
- Switch — "Some say it is only a switch, I say it is one of the most stylish controls in the univer…
- Text — The text control can be used for embedding longer paragraphs of text into your applicatio…
- Text Area — The Text Area allows to enter multi-line text and automatically breaks to a new line for…
- Toolbar - Shrinkable items — Toolbar items can shrink/expand when the toolbar is resized. This behavior is enabled/dis…
On this page