Skip to content

Commit 92f844d

Browse files
committed
nested view with frontend event
1 parent 1429f7a commit 92f844d

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/z2ui5_cl_demo_app_065.clas.abap

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ CLASS Z2UI5_CL_DEMO_APP_065 IMPLEMENTATION.
1919

2020
METHOD Z2UI5_if_app~main.
2121

22-
2322
data(lo_view) = z2ui5_cl_xml_view=>factory( ).
2423

2524
DATA(page) = lo_view->shell(
@@ -42,6 +41,8 @@ CLASS Z2UI5_CL_DEMO_APP_065 IMPLEMENTATION.
4241
DATA(lo_view_nested) = Z2UI5_cl_xml_view=>factory( client
4342
)->page( title = `Nested View`
4443
)->button( text = 'event' press = client->_event( 'TEST' )
44+
)->button( text = `frontend event`
45+
press = client->_event_client( val = client->cs_event-open_new_tab t_arg = value #( ( `https://github.com/abap2UI5/abap2UI5/` ) ) )
4546
)->input( value = client->_bind_edit( mv_input_nest ) ).
4647

4748
IF check_initialized = abap_false.

src/z2ui5_cl_demo_app_098.clas.abap

+4-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,10 @@ CLASS Z2UI5_CL_DEMO_APP_098 IMPLEMENTATION.
9696

9797
DATA(page) = lo_view_nested->page( title = `Nested View` ).
9898

99-
page = page->text( text = client->_bind( mv_title ) ).
99+
page = page->text( text = client->_bind( mv_title )
100+
)->button(
101+
text = `frontend event`
102+
press = client->_event_client( val = client->cs_event-open_new_tab t_arg = value #( ( `https://github.com/abap2UI5/abap2UI5/` ) ) ) ).
100103

101104

102105
client->nest2_view_display(

0 commit comments

Comments
 (0)