abap2UI5

Select - Wrapping text

Illustrates how the text in items wrap.

Z2UI5_CL_SMPC_APP_374

Controls sap.m UI5 1.71

The facts

Repository
abap2UI5/samples-controls
Class
Z2UI5_CL_SMPC_APP_374
Source file
z2ui5_cl_smpc_app_374.clas.abap
Library
sap.m
UI5 entity
sap.m.Select
Demo kit sample
sap.m.sample.SelectWithWrappedItemText
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: select, sap.m, selectwithwrappeditemtext, item

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_374.clas.abap — 98 lines Read it on GitHub ↗
" @keywords select sap.m selectwithwrappeditemtext item
" @summary Illustrates how the text in items wrap.
CLASS z2ui5_cl_smpc_app_374 DEFINITION PUBLIC.

  PUBLIC SECTION.
    INTERFACES z2ui5_if_app.

    TYPES:
      BEGIN OF ty_s_product,
        product_id TYPE string,
        name       TYPE string,
      END OF ty_s_product.
    DATA t_products  TYPE STANDARD TABLE OF ty_s_product WITH EMPTY KEY.
    DATA t_products2 TYPE STANDARD TABLE OF ty_s_product WITH EMPTY KEY.

  PROTECTED SECTION.
    DATA client TYPE REF TO z2ui5_if_client.

    METHODS view_display.
    METHODS model_init.

  PRIVATE SECTION.
ENDCLASS.


CLASS z2ui5_cl_smpc_app_374 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 = `height`     v = `100%`
        )->a( n = `xmlns:core` v = `sap.ui.core`
        )->a( n = `xmlns:mvc`  v = `sap.ui.core.mvc`
        )->a( n = `xmlns`      v = `sap.m`

        )->ele( `Select`
            )->a( n = `width`         v = `300px`
            )->a( n = `wrapItemsText` v = `true`
            )->a( n = `class`         v = `sapUiLargeMargin`
            )->a( n = `items`         v = |\{ path: '{ client->_bind_path( t_products ) }', sorter: \{ path: 'NAME' \} \}|

            )->tag( n = `Item` ns = `core`
                )->a( n = `key`  v = `{PRODUCT_ID}`
                )->a( n = `text` v = `{NAME}`

        )->end(

        )->ele( `Select`
            )->a( n = `width`         v = `300px`
            )->a( n = `wrapItemsText` v = `true`
            )->a( n = `class`         v = `sapUiLargeMargin`
            )->a( n = `items`         v = |\{ path: '{ client->_bind_path( t_products2 ) }', sorter: \{ path: 'NAME' \} \}|

            )->tag( n = `Item` ns = `core`
                )->a( n = `key`  v = `{PRODUCT_ID}`
                )->a( n = `text` v = `{NAME}` ).

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

  ENDMETHOD.


  METHOD model_init.

    " Data of the inline JSON model defined in the original sample controller
    t_products = VALUE #(
      ( product_id = `HT-1001` name = `Select option 1` )
      ( product_id = `HT-1002` name = `Lorem Ipsum is simply dummy text of the printing and typesetting industry.` )
      ( product_id = `HT-1003` name = `Select option 3` )
      ( product_id = `HT-1007` name = `Select option 4` )
      ( product_id = `HT-1010` name = `Select option 5` ) ).

    t_products2 = VALUE #(
      ( product_id = `key1` name = `Select option 1` )
      ( product_id = `key2` name = `Lorem Ipsum is simply dummy text of the printing and typesetting industry. ` &&
                                   `Lorem Ipsum is simply dummy text of the printing and typesetting industry.` )
      ( product_id = `key3` name = `Select option 3` )
      ( product_id = `key4` name = `Select option 4` )
      ( product_id = `key5` name = `Select option 5` ) ).

  ENDMETHOD.

ENDCLASS.

More in sap.m

Search every abap2UI5 sample · the full list on one page

On this page