abap2UI5

RangeSlider

With the RangeSlider a user can specify range from a numerical interval.

Z2UI5_CL_SMPC_APP_045

Controls sap.m UI5 1.71

The facts

Repository
abap2UI5/samples-controls
Class
Z2UI5_CL_SMPC_APP_045
Source file
z2ui5_cl_smpc_app_045.clas.abap
Library
sap.m
UI5 entity
sap.m.RangeSlider
Demo kit sample
sap.m.sample.RangeSlider
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: rangeslider, range, slider, sap.m, user, specify, verticallayout, text, responsivescale

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_045.clas.abap — 175 lines Read it on GitHub ↗
" @keywords rangeslider range slider sap.m user specify verticallayout text responsivescale
" @summary With the RangeSlider a user can specify range from a numerical interval.
CLASS z2ui5_cl_smpc_app_045 DEFINITION PUBLIC.

  PUBLIC SECTION.
    INTERFACES z2ui5_if_app.

    DATA rs1_value  TYPE i.
    DATA rs1_value2 TYPE i.
    DATA rs2_value  TYPE i.
    DATA rs2_value2 TYPE i.
    DATA rs3_value  TYPE i.
    DATA rs3_value2 TYPE i.
    DATA rs4_value  TYPE i.
    DATA rs4_value2 TYPE i.
    DATA rs5_value  TYPE i.
    DATA rs5_value2 TYPE i.

  PROTECTED SECTION.
    DATA client TYPE REF TO z2ui5_if_client.

    METHODS view_display.
    METHODS model_init.

  PRIVATE SECTION.
ENDCLASS.


CLASS z2ui5_cl_smpc_app_045 IMPLEMENTATION.

  METHOD z2ui5_if_app~main.

    me->client = client.
    IF client->check_on_init( ).
      model_init( ).
      view_display( ).
    ELSEIF 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 = `xmlns`     v = `sap.m`
        )->a( n = `xmlns:mvc` v = `sap.ui.core.mvc`
        )->a( n = `xmlns:l`   v = `sap.ui.layout`

        )->ele( n = `VerticalLayout` ns = `l`
            )->a( n = `class` v = `sapUiContentPadding`
            )->a( n = `width` v = `100%`

            )->tag( `Text`
                )->a( n = `text`  v = `RangeSlider with text fields`
                )->a( n = `class` v = `sapUiSmallMarginBottom`
            " the composite range property ([low, high]) is expressed as the scalar value/value2 pair on every RangeSlider below (see sidecar NOTE)
            )->tag( `RangeSlider`
                )->a( n = `showAdvancedTooltip` v = `true`
                )->a( n = `value`               v = client->_bind( rs1_value )
                )->a( n = `value2`              v = client->_bind( rs1_value2 )
                )->a( n = `min`                 v = `0`
                )->a( n = `max`                 v = `100`
                )->a( n = `width`               v = `80%`
                )->a( n = `class`               v = `sapUiMediumMarginBottom`
            )->tag( `RangeSlider`
                )->a( n = `showAdvancedTooltip` v = `true`
                )->a( n = `value`               v = client->_bind( rs2_value )
                )->a( n = `value2`              v = client->_bind( rs2_value2 )
                )->a( n = `min`                 v = `-50`
                )->a( n = `max`                 v = `50`
                )->a( n = `width`               v = `10rem`
                )->a( n = `class`               v = `sapUiMediumMarginBottom`
            )->tag( `RangeSlider`
                )->a( n = `showAdvancedTooltip` v = `true`
                )->a( n = `value`               v = client->_bind( rs3_value )
                )->a( n = `value2`              v = client->_bind( rs3_value2 )
                )->a( n = `min`                 v = `0`
                )->a( n = `max`                 v = `100`
                )->a( n = `width`               v = `10rem`
                )->a( n = `class`               v = `sapUiMediumMarginBottom`
            )->tag( `RangeSlider`
                )->a( n = `showAdvancedTooltip` v = `true`
                )->a( n = `value`               v = client->_bind( rs4_value )
                )->a( n = `value2`              v = client->_bind( rs4_value2 )
                )->a( n = `min`                 v = `-1000`
                )->a( n = `max`                 v = `1000`
                )->a( n = `width`               v = `100%`
                )->a( n = `class`               v = `sapUiMediumMarginBottom`
            )->tag( `RangeSlider`
                )->a( n = `showAdvancedTooltip` v = `true`
                )->a( n = `value`               v = client->_bind( rs5_value )
                )->a( n = `value2`              v = client->_bind( rs5_value2 )
                )->a( n = `min`                 v = `0`
                )->a( n = `max`                 v = `500`
                )->a( n = `width`               v = `100%`
                )->a( n = `class`               v = `sapUiLargeMarginBottom`
            )->tag( `Text`
                )->a( n = `text`  v = `RangeSlider with inputs`
                )->a( n = `class` v = `sapUiSmallMarginBottom`
            )->tag( `RangeSlider`
                )->a( n = `showAdvancedTooltip` v = `true`
                )->a( n = `value`               v = `0`
                )->a( n = `value2`              v = `100`
                )->a( n = `min`                 v = `0`
                )->a( n = `max`                 v = `500`
                )->a( n = `width`               v = `100%`
                )->a( n = `showHandleTooltip`   v = `false`
                )->a( n = `inputsAsTooltips`    v = `true`
                )->a( n = `class`               v = `sapUiLargeMarginBottom`
            )->tag( `Text`
                )->a( n = `text`  v = `RangeSlider with tickmarks`
                )->a( n = `class` v = `sapUiSmallMarginBottom`
            )->tag( `RangeSlider`
                )->a( n = `showAdvancedTooltip` v = `true`
                )->a( n = `enableTickmarks`     v = `true`
                )->a( n = `value`               v = `0`
                )->a( n = `value2`              v = `10`
                )->a( n = `min`                 v = `0`
                )->a( n = `max`                 v = `10`
                )->a( n = `class`               v = `sapUiMediumMarginBottom`
            )->tag( `RangeSlider`
                )->a( n = `showAdvancedTooltip` v = `true`
                )->a( n = `enableTickmarks`     v = `true`
                )->a( n = `class`               v = `sapUiMediumMarginBottom`
            )->tag( `Text`
                )->a( n = `text`  v = `RangeSlider with tickmarks and step '5'`
                )->a( n = `class` v = `sapUiSmallMarginBottom`
            )->tag( `RangeSlider`
                )->a( n = `showAdvancedTooltip` v = `true`
                )->a( n = `enableTickmarks`     v = `true`
                )->a( n = `min`                 v = `-100`
                )->a( n = `max`                 v = `100`
                )->a( n = `step`                v = `5`
                )->a( n = `class`               v = `sapUiLargeMarginBottom`
            )->tag( `Text`
                )->a( n = `text`  v = `RangeSlider with tickmarks and labels`
                )->a( n = `class` v = `sapUiSmallMarginBottom`

            )->ele( `RangeSlider`
                )->a( n = `showAdvancedTooltip` v = `true`
                )->a( n = `min`                 v = `0`
                )->a( n = `max`                 v = `30`
                )->a( n = `value`               v = `5`
                )->a( n = `value2`              v = `20`
                )->a( n = `enableTickmarks`     v = `true`
                )->a( n = `class`               v = `sapUiSmallMarginBottom`

                )->tag( `ResponsiveScale`
                    )->a( n = `tickmarksBetweenLabels` v = `3` ).

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

  ENDMETHOD.


  METHOD model_init.

    rs1_value  = 0.
    rs1_value2 = 100.
    rs2_value  = -50.
    rs2_value2 = 50.
    rs3_value  = 20.
    rs3_value2 = 80.
    rs4_value  = -500.
    rs4_value2 = 500.
    rs5_value  = 0.
    rs5_value2 = 500.

  ENDMETHOD.

ENDCLASS.

More in sap.m

Search every abap2UI5 sample · the full list on one page

On this page