Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion src/z2ui5_cl_demo_app_000.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ CLASS z2ui5_cl_demo_app_000 IMPLEMENTATION.

METHOD z2ui5_if_app~main.

CONSTANTS c_title TYPE string VALUE ` abap2UI5 - Samples`.

DATA(ls_get) = client->get( ).

IF client->get( )-check_on_navigated = abap_true.
Expand Down Expand Up @@ -61,14 +63,18 @@ CLASS z2ui5_cl_demo_app_000 IMPLEMENTATION.
DATA(page) = z2ui5_cl_xml_view=>factory(
)->shell( )->page(
id = `page`
title = ` abap2UI5 - Samples`
title = c_title
navbuttonpress = client->_event( val = 'BACK' s_ctrl = VALUE #( check_view_destroy = abap_true ) )
shownavbutton = xsdbool( client->get( )-s_draft-id_prev_app_stack IS NOT INITIAL )
)->header_content(
)->toolbar_spacer(
)->link( text = 'Install with abapGit from GitHub' target = '_blank' href = 'https://github.com/oblomov-dev/abap2ui5'
)->get_parent( ).

IF client->get( )-check_launchpad_active = abap_true.
page->_z2ui5( )->lp_title( c_title ).
ENDIF.

page->_z2ui5( )->scrolling(
setupdate = client->_bind_edit( mv_set_scroll )
items = client->_bind_edit( mt_scroll ) ).
Expand Down