Hyphenation API
This sample demonstrates usage of the Hyphenation API
Z2UI5_CL_SMPC_APP_146
Controls
sap.ui.core
UI5 1.71
The facts
- Repository
- abap2UI5/samples-controls
- Class
Z2UI5_CL_SMPC_APP_146- Source file
z2ui5_cl_smpc_app_146.clas.abap↗- Library
- sap.ui.core
- UI5 entity
sap.ui.core.hyphenation.Hyphenation- Demo kit sample
sap.ui.core.sample.HyphenationAPI- 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: hyphenation, sap.ui.core.hyphenation, api, html, simpleform, label, slider, panel
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_146.clas.abap — 105 lines
Click a number to link to a line — shift-click for a range.
Read it on GitHub ↗
" @keywords hyphenation sap.ui.core.hyphenation api html simpleform label slider panel
" @summary This sample demonstrates usage of the Hyphenation API
CLASS z2ui5_cl_smpc_app_146 DEFINITION PUBLIC.
PUBLIC SECTION.
INTERFACES z2ui5_if_app.
DATA slider_value 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_146 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( ).
" the original's onSliderMoved sets the three Panel widths to value + "%" in
" JS; rebuilt as a two-way bound Slider value plus an expression binding on
" each Panel width, so the resize runs on the client with no round-trip
" (thin frontend) and the liveChange wire is not needed
view->ele( n = `View` ns = `mvc`
)->a( n = `xmlns:mvc` v = `sap.ui.core.mvc`
)->a( n = `xmlns` v = `sap.m`
)->a( n = `xmlns:c` v = `sap.ui.core`
)->a( n = `xmlns:f` v = `sap.ui.layout.form`
)->a( n = `displayBlock` v = `true`
)->ele( n = `SimpleForm` ns = `f`
)->a( n = `layout` v = `ResponsiveGridLayout`
)->a( n = `editable` v = `true`
)->a( n = `title` v = `Hyphenation API usage with different languages`
)->a( n = `adjustLabelSpan` v = `false`
)->a( n = `labelSpanXL` v = `1`
)->a( n = `labelSpanL` v = `2`
)->a( n = `labelSpanM` v = `2`
)->a( n = `labelSpanS` v = `4`
)->tag( `Label`
)->a( n = `text` v = `Container Width`
)->tag( `Slider`
)->a( n = `id` v = `widthSlider`
)->a( n = `value` v = client->_bind( slider_value )
)->end(
)->ele( `Panel`
)->a( n = `id` v = `containerLayout`
)->a( n = `headerText` v = `Default language (English-US)`
)->a( n = `width` v = |\{= ${ client->_bind( slider_value ) } + '%' \}|
)->tag( n = `HTML` ns = `c`
)->a( n = `id` v = `hyphenatedText`
)->a( n = `content` v = ``
)->end(
)->ele( `Panel`
)->a( n = `id` v = `containerLayoutDE`
)->a( n = `headerText` v = `German language`
)->a( n = `width` v = |\{= ${ client->_bind( slider_value ) } + '%' \}|
)->tag( n = `HTML` ns = `c`
)->a( n = `id` v = `hyphenatedTextDE`
)->a( n = `content` v = ``
)->end(
)->ele( `Panel`
)->a( n = `id` v = `containerLayoutRU`
)->a( n = `headerText` v = `Russian language`
)->a( n = `width` v = |\{= ${ client->_bind( slider_value ) } + '%' \}|
)->tag( n = `HTML` ns = `c`
)->a( n = `id` v = `hyphenatedTextRU`
)->a( n = `content` v = `` ).
client->view_display( view->stringify( ) ).
ENDMETHOD.
METHOD model_init.
" the original Slider carries value="100" and the Panels width="100%"
slider_value = 100.
ENDMETHOD.
ENDCLASS.
More in sap.ui.core
- InvisibleText — Many controls provide the associations ariaLabelledBy and ariaDescribedBy for accessibili…
- 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…
- 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.
- FileSize Type — This sample explains the formatting options of the FileSize type.
- Date Type - Source As String — This sample explains the formatting options of the Date type with the date being availabl…
- Time Type — This sample explains the formatting options of the Time type.
- DateTime Type — This sample explains the formatting options of the DateTime type.
On this page