Tab Container
The sap.m.TabContainer allows for working with multiple tabs.
Z2UI5_CL_SMPC_APP_093
Controls
sap.m
UI5 1.71
The facts
- Repository
- abap2UI5/samples-controls
- Class
Z2UI5_CL_SMPC_APP_093- Source file
z2ui5_cl_smpc_app_093.clas.abap↗- Library
- sap.m
- UI5 entity
sap.m.TabContainer- Demo kit sample
sap.m.sample.TabContainer- 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: tabcontainer, tab, container, sap.m, editable, employee, tabs, tabcontaineritem, label, input
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_093.clas.abap — 149 lines
Click a number to link to a line — shift-click for a range.
Read it on GitHub ↗
" @keywords tabcontainer tab container sap.m editable employee tabs tabcontaineritem label input
" @summary The sap.m.TabContainer allows for working with multiple tabs.
CLASS z2ui5_cl_smpc_app_093 DEFINITION PUBLIC.
PUBLIC SECTION.
INTERFACES z2ui5_if_app.
TYPES:
BEGIN OF ty_s_emp,
name TYPE string,
modified TYPE abap_bool,
emp_first_name TYPE string,
emp_last_name TYPE string,
" SALARY carries no typed binding anywhere - the original binds it into a
" plain Input over a JSONModel that holds whatever the user types. A packed
" field cannot: a table cell that fails to convert is swallowed by
" delta_apply_field's "skip just this cell", so an entry like 1,455.22 was
" discarded without an error and the browser kept showing it (measured)
salary TYPE string,
END OF ty_s_emp.
DATA t_employees TYPE STANDARD TABLE OF ty_s_emp WITH EMPTY KEY.
PROTECTED SECTION.
DATA client TYPE REF TO z2ui5_if_client.
" the tab pending the close confirmation (name + row index), kept across
" the MessageBox round-trip
DATA close_name TYPE string.
DATA close_index TYPE i.
METHODS view_display.
METHODS on_event.
METHODS model_init.
PRIVATE SECTION.
ENDCLASS.
CLASS z2ui5_cl_smpc_app_093 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( ).
ELSEIF client->check_on_event( ).
on_event( ).
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:mvc` v = `sap.ui.core.mvc`
)->a( n = `xmlns` v = `sap.m`
)->ele( `TabContainer`
)->a( n = `items` v = client->_bind( t_employees )
)->a( n = `id` v = `myTabContainer`
)->a( n = `showAddNewButton` v = `true`
)->a( n = `class` v = `sapUiResponsiveContentPadding sapUiResponsivePadding--header`
)->a( n = `addNewButtonPress` v = client->_event( `ADD` )
" itemCloseHandler: oEvent.preventDefault() unconditionally, then a
" MessageBox.confirm decides - the eBP wire cancels the built-in close
" and transports the tab name + its row index for the server decision
)->a( n = `itemClose` v = client->_event( val = `CLOSE`
t_arg = VALUE #( ( `${$parameters>/item}.getName()` ) ( `${$parameters>/item/oParent}.indexOfItem(${$parameters>/item})` ) )
s_ctrl = VALUE #( check_prevent_default = abap_true ) )
)->ele( `items`
)->ele( `TabContainerItem`
)->a( n = `name` v = `{NAME}`
)->a( n = `modified` v = `{MODIFIED}`
)->ele( `content`
)->tag( `Label`
)->a( n = `text` v = `First Name:`
)->tag( `Input`
)->a( n = `value` v = `{EMP_FIRST_NAME}`
)->tag( `Label`
)->a( n = `text` v = `Last Name:`
)->tag( `Input`
)->a( n = `value` v = `{EMP_LAST_NAME}`
)->tag( `Label`
)->a( n = `text` v = `Salary:`
)->tag( `Input`
)->a( n = `value` v = `{SALARY}`
)->a( n = `description` v = `EUR`
)->end(
)->end(
)->end(
)->end( ).
client->view_display( view->stringify( ) ).
ENDMETHOD.
METHOD on_event.
CASE client->get_event( ).
WHEN `ADD`.
" addNewButtonPressHandler: add a new, empty employee tab
APPEND VALUE #( name = `New employee` modified = abap_false ) TO t_employees.
WHEN `CLOSE`.
" itemCloseHandler: confirm before closing; the answer comes back as
" the CLOSE_DECIDE event's action argument
close_name = client->get_event_arg( ).
close_index = client->get_event_arg( 2 ).
client->message_box_display( text = |Do you want to close the tab '{ close_name }'?|
type = `confirm`
onclose = `CLOSE_DECIDE` ).
WHEN `CLOSE_DECIDE`.
" OK removes the tab row (the bound-aggregation form of removeItem)
IF client->get_event_arg( ) = `OK`.
IF close_index >= 0 AND close_index < lines( t_employees ).
DELETE t_employees INDEX close_index + 1.
ENDIF.
client->message_toast_display( text = |Item closed: { close_name }| duration = `500` ).
ELSE.
client->message_toast_display( text = |Item close canceled: { close_name }| duration = `500` ).
ENDIF.
ENDCASE.
ENDMETHOD.
METHOD model_init.
t_employees = VALUE #(
" the seeds are the digits UI5 renders today: the packed field serialized as a
" JSON NUMBER, so 1189.00 reached the browser as 1189 - and the original's
" salary: 1189.00 is likewise the JS number 1189, so both render 1189
( name = `Jean Doe` emp_first_name = `Jean` emp_last_name = `Doe` salary = `1455.22` )
( name = `John Smith` emp_first_name = `John` emp_last_name = `Smith` salary = `1390.77` modified = abap_true )
( name = `Particia Clark` emp_first_name = `Particia` emp_last_name = `Clark` salary = `1189` )
( name = `Tim McAfeed` emp_first_name = `Tim` emp_last_name = `McAfeed` salary = `1235.37` ) ).
ENDMETHOD.
ENDCLASS.
More in sap.m
- Basic Tokenizer — Basic Tokenizer with tokens
- OverflowToolbar - Design and styling — The Design and Style properties can be used to specify the visual design of the OverflowT…
- Fiori Object Page - Standard Classes — This page implements the same sample as in 'Fiori Sample Page - sapUiFioriObjectPage' usi…
- Dialog with Search Field — Use a Search Field inside a Dialog.
- Time Picker - Open by Another Control — This example demonstrates the Time Picker that is opened by another control.
- Table - Auto popin of the table columns — This example demonstrates the automatic pop-in behavior of the table and hiding columns i…
- Popover Controlling Closing Behavior — In some cases the closing behavior of the Popover can lead to drill down navigation. This…
- Time Picker Sliders — TimePickerSliders used in a Dialog.
- SplitContainer standard use case — SplitContainer maintains two NavContainers if running on tablet or desktop and one NavCon…
- SplitApp standard use case — The SplitApp is the base for each master detail application. It extends the sap.m.SplitCo…
- View Settings Dialog - Standard — The View Settings Dialog is a standard UI pattern for specifying sorting, grouping and fi…
- QuickViewCard — QuickViewCard embedded in container
On this page