abap2UI5

Toggle Button

Toggle Buttons can be toggled between pressed and normal state.

Z2UI5_CL_SMPC_APP_080

Controls sap.m UI5 1.71

The facts

Repository
abap2UI5/samples-controls
Class
Z2UI5_CL_SMPC_APP_080
Source file
z2ui5_cl_smpc_app_080.clas.abap
Library
sap.m
UI5 entity
sap.m.ToggleButton
Demo kit sample
sap.m.sample.ToggleButton
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: togglebutton, toggle, button, sap.m, bars, pressed, states, bar, title, hbox, flexitemdata

Controls it builds

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_080.clas.abap — 150 lines Read it on GitHub ↗
" @keywords togglebutton toggle button sap.m bars pressed states bar title hbox flexitemdata
" @summary Toggle Buttons can be toggled between pressed and normal state.
CLASS z2ui5_cl_smpc_app_080 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_080 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( ).


    view->ele( n = `View` ns = `mvc`
        )->a( n = `height`     v = `100%`
        )->a( n = `xmlns:mvc`  v = `sap.ui.core.mvc`
        )->a( n = `xmlns`      v = `sap.m`

        )->ele( `Page`
            )->a( n = `title` v = `Page`
            )->a( n = `class` v = `sapUiContentPadding`

            )->ele( `customHeader`
                )->ele( `Bar`
                    )->ele( `contentMiddle`
                        )->tag( `Title`
                            )->a( n = `level` v = `H2`
                            )->a( n = `text`  v = `Title`

                    )->end(
                    )->ele( `contentRight`
                        )->tag( `ToggleButton`
                            )->a( n = `icon`  v = `sap-icon://edit`
                            )->a( n = `press` v = client->follow_up_action( val   = client->cs_event-control_global
                                                                            t_arg = VALUE #( ( `MESSAGE_TOAST` ) ( `show` ) ( `{0} {1?Pressed:Unpressed}` ) ( `$event.oSource.sId` ) ( `$event.oSource.getPressed()` ) ) )

                    )->end(
                )->end(
            )->end(

            )->ele( `subHeader`
                )->ele( `Bar`
                    )->ele( `contentLeft`
                        )->tag( `ToggleButton`
                            )->a( n = `text`    v = `Pressed`
                            )->a( n = `enabled` v = `true`
                            )->a( n = `pressed` v = `true`
                            )->a( n = `press`   v = client->follow_up_action( val   = client->cs_event-control_global
                                                                              t_arg = VALUE #( ( `MESSAGE_TOAST` ) ( `show` ) ( `{0} {1?Pressed:Unpressed}` ) ( `$event.oSource.sId` ) ( `$event.oSource.getPressed()` ) ) )
                        )->tag( `ToggleButton`
                            )->a( n = `text`    v = `Pressed & Disabled`
                            )->a( n = `enabled` v = `false`
                            )->a( n = `pressed` v = `true`
                            )->a( n = `press`   v = client->follow_up_action( val   = client->cs_event-control_global
                                                                              t_arg = VALUE #( ( `MESSAGE_TOAST` ) ( `show` ) ( `{0} {1?Pressed:Unpressed}` ) ( `$event.oSource.sId` ) ( `$event.oSource.getPressed()` ) ) )

                    )->end(
                    )->ele( `contentRight`
                        )->tag( `ToggleButton`
                            )->a( n = `icon`  v = `sap-icon://action`
                            )->a( n = `press` v = client->follow_up_action( val   = client->cs_event-control_global
                                                                            t_arg = VALUE #( ( `MESSAGE_TOAST` ) ( `show` ) ( `{0} {1?Pressed:Unpressed}` ) ( `$event.oSource.sId` ) ( `$event.oSource.getPressed()` ) ) )
                        )->tag( `ToggleButton`
                            )->a( n = `icon`    v = `sap-icon://home`
                            )->a( n = `enabled` v = `false`
                            )->a( n = `press`   v = client->follow_up_action( val   = client->cs_event-control_global
                                                                              t_arg = VALUE #( ( `MESSAGE_TOAST` ) ( `show` ) ( `{0} {1?Pressed:Unpressed}` ) ( `$event.oSource.sId` ) ( `$event.oSource.getPressed()` ) ) )

                    )->end(
                )->end(
            )->end(

            )->ele( `HBox`
                )->ele( `ToggleButton`
                    )->a( n = `text`    v = `Disabled`
                    )->a( n = `enabled` v = `false`
                    )->a( n = `press`   v = client->follow_up_action( val = client->cs_event-control_global t_arg = VALUE #( ( `MESSAGE_TOAST` ) ( `show` ) ( `{0} {1?Pressed:Unpressed}` ) ( `$event.oSource.sId` ) ( `$event.oSource.getPressed()` ) ) )
                    )->ele( `layoutData`
                        )->tag( `FlexItemData`
                            )->a( n = `growFactor` v = `1`

                    )->end(
                )->end(
                )->ele( `ToggleButton`
                    )->a( n = `text`    v = `Pressed`
                    )->a( n = `enabled` v = `true`
                    )->a( n = `pressed` v = `true`
                    )->a( n = `press`   v = client->follow_up_action( val = client->cs_event-control_global t_arg = VALUE #( ( `MESSAGE_TOAST` ) ( `show` ) ( `{0} {1?Pressed:Unpressed}` ) ( `$event.oSource.sId` ) ( `$event.oSource.getPressed()` ) ) )
                    )->ele( `layoutData`
                        )->tag( `FlexItemData`
                            )->a( n = `growFactor` v = `1`

                    )->end(
                )->end(
                )->ele( `ToggleButton`
                    )->a( n = `icon`    v = `sap-icon://action`
                    )->a( n = `enabled` v = `true`
                    )->a( n = `press`   v = client->follow_up_action( val = client->cs_event-control_global t_arg = VALUE #( ( `MESSAGE_TOAST` ) ( `show` ) ( `{0} {1?Pressed:Unpressed}` ) ( `$event.oSource.sId` ) ( `$event.oSource.getPressed()` ) ) )
                    )->ele( `layoutData`
                        )->tag( `FlexItemData`
                            )->a( n = `growFactor` v = `1`

                    )->end(
                )->end(
            )->end(

            )->ele( `footer`
                )->ele( `Bar`
                    )->ele( `contentRight`
                        )->tag( `ToggleButton`
                            )->a( n = `text`    v = `Pressed & Disabled`
                            )->a( n = `enabled` v = `false`
                            )->a( n = `pressed` v = `true`
                            )->a( n = `press`   v = client->follow_up_action( val   = client->cs_event-control_global
                                                                              t_arg = VALUE #( ( `MESSAGE_TOAST` ) ( `show` ) ( `{0} {1?Pressed:Unpressed}` ) ( `$event.oSource.sId` ) ( `$event.oSource.getPressed()` ) ) )
                        )->tag( `ToggleButton`
                            )->a( n = `icon`  v = `sap-icon://action`
                            )->a( n = `press` v = client->follow_up_action( val   = client->cs_event-control_global
                                                                            t_arg = VALUE #( ( `MESSAGE_TOAST` ) ( `show` ) ( `{0} {1?Pressed:Unpressed}` ) ( `$event.oSource.sId` ) ( `$event.oSource.getPressed()` ) ) )

                    )->end(
                )->end(
            )->end(
        )->end( ).

    client->view_display( view->stringify( ) ).

  ENDMETHOD.

ENDCLASS.

More in sap.m

Search every abap2UI5 sample · the full list on one page

On this page