InvisibleText
Many controls provide the associations ariaLabelledBy and ariaDescribedBy for accessibility purposes. The InvisibleText control can be used by application to provide hidden texts on the UI which can be referenced via these associations.
Z2UI5_CL_SMPC_APP_127
Controls
sap.ui.core
UI5 1.71
The facts
- Repository
- abap2UI5/samples-controls
- Class
Z2UI5_CL_SMPC_APP_127- Source file
z2ui5_cl_smpc_app_127.clas.abap↗- Library
- sap.ui.core
- UI5 entity
sap.ui.core.InvisibleText- Demo kit sample
sap.ui.core.sample.InvisibleText- 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: invisibletext, invisible, text, sap.ui.core, aria, descriptions, toolbar, button, toolbarspacer, title, hbox, flexitemdata
Controls it builds
- sap.m.Button
- sap.m.FlexItemData
- sap.m.HBox
- sap.m.Label
- sap.m.Page
- sap.m.Title
- sap.m.Toolbar
- sap.m.ToolbarSpacer
- sap.ui.core.InvisibleText
- 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_127.clas.abap — 170 lines
Click a number to link to a line — shift-click for a range.
Read it on GitHub ↗
" @keywords invisibletext invisible text sap.ui.core aria descriptions toolbar button toolbarspacer title hbox flexitemdata
" @summary Many controls provide the associations ariaLabelledBy and ariaDescribedBy for accessibility purposes. The InvisibleText control can be used by application to provide hidden texts on the UI which can be referenced via these associations.
CLASS z2ui5_cl_smpc_app_127 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_127 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( ).
" original onPress: MessageToast.show( source.getId() + ' Pressed' )
view->ele( n = `View` ns = `mvc`
)->a( n = `xmlns` v = `sap.m`
)->a( n = `xmlns:mvc` v = `sap.ui.core.mvc`
)->a( n = `xmlns:core` v = `sap.ui.core`
)->a( n = `height` v = `100%`
)->ele( `Page`
)->a( n = `title` v = `Page`
)->a( n = `class` v = `sapUiContentPadding`
)->ele( `customHeader`
)->ele( `Toolbar`
)->tag( `Button`
)->a( n = `type` v = `Back`
)->a( n = `press` v = client->follow_up_action( val = client->cs_event-control_global t_arg = VALUE #( ( `MESSAGE_TOAST` ) ( `show` ) ( `{0} Pressed` ) ( `$event.oSource.sId` ) ) )
)->tag( `ToolbarSpacer`
)->tag( `Title`
)->a( n = `text` v = `Title`
)->tag( `ToolbarSpacer`
)->tag( `Button`
)->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} Pressed` ) ( `$event.oSource.sId` ) ) )
)->a( n = `ariaLabelledBy` v = `editButtonLabel`
)->end(
)->end(
)->ele( `subHeader`
)->ele( `Toolbar`
)->tag( `ToolbarSpacer`
)->tag( `Button`
)->a( n = `text` v = `Default`
)->a( n = `press` v = client->follow_up_action( val = client->cs_event-control_global t_arg = VALUE #( ( `MESSAGE_TOAST` ) ( `show` ) ( `{0} Pressed` ) ( `$event.oSource.sId` ) ) )
)->tag( `Button`
)->a( n = `type` v = `Reject`
)->a( n = `text` v = `Reject`
)->a( n = `press` v = client->follow_up_action( val = client->cs_event-control_global t_arg = VALUE #( ( `MESSAGE_TOAST` ) ( `show` ) ( `{0} Pressed` ) ( `$event.oSource.sId` ) ) )
)->tag( `Button`
)->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} Pressed` ) ( `$event.oSource.sId` ) ) )
)->a( n = `ariaLabelledBy` v = `actionButtonLabel`
)->tag( `ToolbarSpacer`
)->end(
)->end(
)->ele( `content`
)->ele( `HBox`
)->ele( `Button`
)->a( n = `text` v = `Default`
)->a( n = `press` v = client->follow_up_action( val = client->cs_event-control_global t_arg = VALUE #( ( `MESSAGE_TOAST` ) ( `show` ) ( `{0} Pressed` ) ( `$event.oSource.sId` ) ) )
)->a( n = `ariaDescribedBy` v = `defaultButtonDescription genericButtonDescription`
)->ele( `layoutData`
)->tag( `FlexItemData`
)->a( n = `growFactor` v = `1`
)->end(
)->end(
)->ele( `Button`
)->a( n = `type` v = `Accept`
)->a( n = `text` v = `Accept`
)->a( n = `press` v = client->follow_up_action( val = client->cs_event-control_global t_arg = VALUE #( ( `MESSAGE_TOAST` ) ( `show` ) ( `{0} Pressed` ) ( `$event.oSource.sId` ) ) )
)->a( n = `ariaDescribedBy` v = `acceptButtonDescription genericButtonDescription`
)->ele( `layoutData`
)->tag( `FlexItemData`
)->a( n = `growFactor` v = `1`
)->end(
)->end(
)->ele( `Button`
)->a( n = `type` v = `Reject`
)->a( n = `text` v = `Reject`
)->a( n = `press` v = client->follow_up_action( val = client->cs_event-control_global t_arg = VALUE #( ( `MESSAGE_TOAST` ) ( `show` ) ( `{0} Pressed` ) ( `$event.oSource.sId` ) ) )
)->a( n = `ariaDescribedBy` v = `rejectButtonDescription genericButtonDescription`
)->ele( `layoutData`
)->tag( `FlexItemData`
)->a( n = `growFactor` v = `1`
)->end(
)->end(
)->ele( `Button`
)->a( n = `text` v = `Coming Soon`
)->a( n = `press` v = client->follow_up_action( val = client->cs_event-control_global t_arg = VALUE #( ( `MESSAGE_TOAST` ) ( `show` ) ( `{0} Pressed` ) ( `$event.oSource.sId` ) ) )
)->a( n = `ariaDescribedBy` v = `comingSoonButtonDescription genericButtonDescription`
)->a( n = `enabled` v = `false`
)->ele( `layoutData`
)->tag( `FlexItemData`
)->a( n = `growFactor` v = `1`
)->end(
)->end(
)->end(
)->tag( `Label`
)->a( n = `id` v = `genericButtonDescription`
)->a( n = `text` v = `Note: The buttons in this sample display MessageToast when pressed.`
)->tag( n = `InvisibleText` ns = `core`
)->a( n = `id` v = `defaultButtonDescription`
)->a( n = `text` v = `Description of default button goes here.`
)->tag( n = `InvisibleText` ns = `core`
)->a( n = `id` v = `acceptButtonDescription`
)->a( n = `text` v = `Description of accept button goes here.`
)->tag( n = `InvisibleText` ns = `core`
)->a( n = `id` v = `rejectButtonDescription`
)->a( n = `text` v = `Description of reject button goes here.`
)->tag( n = `InvisibleText` ns = `core`
)->a( n = `id` v = `comingSoonButtonDescription`
)->a( n = `text` v = `This feature is not active just now.`
)->tag( n = `InvisibleText` ns = `core`
)->a( n = `id` v = `editButtonLabel`
)->a( n = `text` v = `Edit Button Label`
)->tag( n = `InvisibleText` ns = `core`
)->a( n = `id` v = `actionButtonLabel`
)->a( n = `text` v = `Action Button Label`
)->end(
)->ele( `footer`
)->ele( `Toolbar`
)->tag( `ToolbarSpacer`
)->tag( `Button`
)->a( n = `type` v = `Emphasized`
)->a( n = `text` v = `Emphasized`
)->a( n = `press` v = client->follow_up_action( val = client->cs_event-control_global t_arg = VALUE #( ( `MESSAGE_TOAST` ) ( `show` ) ( `{0} Pressed` ) ( `$event.oSource.sId` ) ) )
)->tag( `Button`
)->a( n = `text` v = `Default`
)->a( n = `press` v = client->follow_up_action( val = client->cs_event-control_global t_arg = VALUE #( ( `MESSAGE_TOAST` ) ( `show` ) ( `{0} Pressed` ) ( `$event.oSource.sId` ) ) )
)->tag( `Button`
)->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} Pressed` ) ( `$event.oSource.sId` ) ) ) ).
client->view_display( view->stringify( ) ).
ENDMETHOD.
ENDCLASS.
More in sap.ui.core
- No Container Content Padding — Many UI5 containers support the standard container content padding CSS classes. Apply the…
- Margins All Around — Use standard margin classes 'sapUiTinyMargin', 'sapUiSmallMargin', 'sapUiMediumMargin' or…
- HTML — With the HTML controls you can easily embed any kind of HTML content into your UI5 mobile…
- Icon — Built with an embedded font, icons scale well, and can be altered with CSS. They can also…
- Integer Format — Formats and parses only the integer digits. The decimal digits are ignored.
- Control Busy Indicator — A control's busy indicator can be used to block parts of the screen until an operation ha…
- Basic Theme Parameters — Sample provides a link to the Theme Parameter Toolbox. There you can easily search, previ…
- Currency Format — Formats the number by using the parameters defined for the given currency code. Either cu…
- InvisibleMessage — The InvisibleMessage provides a way to programmaticaly expose dynamic content changes in…
- Hyphenation API — This sample demonstrates usage of the Hyphenation API
- Busy Indicator — A busy indicator can be used to block the entire screen until an operation has finished.
- Float Format — Formats and parses both integer and decimal digits.
On this page