Slider
With the Slider a user can choose a value from a numerical range.
Z2UI5_CL_SMPC_APP_068
Controls
sap.m
UI5 1.71
The facts
- Repository
- abap2UI5/samples-controls
- Class
Z2UI5_CL_SMPC_APP_068- Source file
z2ui5_cl_smpc_app_068.clas.abap↗- Library
- sap.m
- UI5 entity
sap.m.Slider- Demo kit sample
sap.m.sample.Slider- 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: slider, sap.m, variants:, tickmarks, tooltips, scale, 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_068.clas.abap — 145 lines
Click a number to link to a line — shift-click for a range.
Read it on GitHub ↗
" @keywords slider sap.m variants: tickmarks tooltips scale verticallayout text responsivescale
" @summary With the Slider a user can choose a value from a numerical range.
CLASS z2ui5_cl_smpc_app_068 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_068 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 = `xmlns:l` v = `sap.ui.layout`
)->a( n = `xmlns:mvc` v = `sap.ui.core.mvc`
)->a( n = `xmlns` v = `sap.m`
)->ele( n = `VerticalLayout` ns = `l`
)->a( n = `class` v = `sapUiContentPadding`
)->a( n = `width` v = `100%`
)->tag( `Text`
)->a( n = `text` v = `Slider without text field`
)->a( n = `class` v = `sapUiSmallMarginBottom`
)->tag( `Slider`
)->a( n = `value` v = `30`
)->a( n = `width` v = `90%`
)->a( n = `class` v = `sapUiSmallMarginBottom`
)->tag( `Slider`
)->a( n = `value` v = `27`
)->a( n = `width` v = `10em`
)->a( n = `class` v = `sapUiSmallMarginBottom`
)->tag( `Slider`
)->a( n = `value` v = `40`
)->a( n = `width` v = `15em`
)->a( n = `class` v = `sapUiSmallMarginBottom`
)->tag( `Slider`
)->a( n = `value` v = `9`
)->a( n = `width` v = `77%`
)->a( n = `min` v = `0`
)->a( n = `max` v = `10`
)->a( n = `class` v = `sapUiMediumMarginBottom`
)->tag( `Text`
)->a( n = `text` v = `Slider whose value cannot be changed`
)->a( n = `class` v = `sapUiSmallMarginBottom`
)->tag( `Slider`
)->a( n = `value` v = `5`
)->a( n = `width` v = `66%`
)->a( n = `min` v = `0`
)->a( n = `max` v = `50`
)->a( n = `enabled` v = `false`
)->a( n = `class` v = `sapUiMediumMarginBottom`
)->tag( `Text`
)->a( n = `text` v = `Slider with text field`
)->a( n = `class` v = `sapUiSmallMarginBottom`
)->tag( `Slider`
)->a( n = `value` v = `50`
)->a( n = `width` v = `100%`
)->a( n = `min` v = `0`
)->a( n = `max` v = `100`
)->a( n = `showAdvancedTooltip` v = `true`
)->a( n = `showHandleTooltip` v = `false`
)->a( n = `class` v = `sapUiMediumMarginBottom`
)->tag( `Text`
)->a( n = `text` v = `Slider with input field`
)->a( n = `class` v = `sapUiSmallMarginBottom`
)->tag( `Slider`
)->a( n = `value` v = `30`
)->a( n = `width` v = `100%`
)->a( n = `min` v = `0`
)->a( n = `max` v = `200`
)->a( n = `showAdvancedTooltip` v = `true`
)->a( n = `showHandleTooltip` v = `false`
)->a( n = `inputsAsTooltips` v = `true`
)->a( n = `class` v = `sapUiMediumMarginBottom`
)->tag( `Text`
)->a( n = `text` v = `Slider with tickmarks`
)->a( n = `class` v = `sapUiSmallMarginBottom`
)->tag( `Slider`
)->a( n = `enableTickmarks` v = `true`
)->a( n = `min` v = `0`
)->a( n = `max` v = `10`
)->a( n = `class` v = `sapUiMediumMarginBottom`
)->a( n = `width` v = `100%`
)->tag( `Slider`
)->a( n = `enableTickmarks` v = `true`
)->a( n = `class` v = `sapUiMediumMarginBottom`
)->a( n = `width` v = `100%`
)->tag( `Text`
)->a( n = `text` v = `Slider with tickmarks and step '5'`
)->a( n = `class` v = `sapUiSmallMarginBottom`
)->tag( `Slider`
)->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`
)->a( n = `width` v = `100%`
)->tag( `Text`
)->a( n = `text` v = `Slider with tickmarks and labels`
)->a( n = `class` v = `sapUiSmallMarginBottom`
)->ele( `Slider`
)->a( n = `min` v = `0`
)->a( n = `max` v = `30`
)->a( n = `enableTickmarks` v = `true`
)->a( n = `class` v = `sapUiSmallMarginBottom`
)->a( n = `width` v = `100%`
)->tag( `ResponsiveScale`
)->a( n = `tickmarksBetweenLabels` v = `3`
)->end(
)->end( ).
client->view_display( view->stringify( ) ).
ENDMETHOD.
ENDCLASS.
More in sap.m
- Message Strip with enableFormattedText — A sample MessageStrip that shows status messages with additional formatting.
- News Content — This control is used to display the news content text and subheader in a tile.
- Numeric Content with Icon — Shows NumericContent including an icon.
- Message Popover - Message Handling — The message handling concept sample shows how you can connect an error inside the page (s…
- MessagePopover — MessagePopover is a control that displays a summarized list of different types of message…
- Message Popover - Async Message Handling — The message handling concept sample shows how you can use callback functions for resolvin…
- Radio Button — Typically the Radio Button is used by other controls. E.g. the List uses it for the singl…
- Progress Indicator — Shows the progress of a process in a graphical way. To indicate the progress, the inside…
- Object Identifier — The object identifier is a small building block representing an object by a title and sho…
- Object Number — The object number is a small building block representing an important, numerical attribut…
- Object Attribute — This is an example of Object Attribute used standalone.
- Object List Item — The Object List Item has many possibilities to provide a quick overview for an object wit…
On this page