File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,8 @@ CLASS z2ui5_cl_app_hello_world IMPLEMENTATION.
3838
3939 client->view_display( z2ui5_cl_xml_view=>factory(
4040 )->page( `abap2UI5 - Hello World`
41- )->text( `My Text` ) ).
41+ )->text( `My Text`
42+ )->stringify( ) ).
4243
4344 ENDMETHOD.
4445ENDCLASS.
@@ -61,7 +62,8 @@ CLASS z2ui5_cl_app_hello_world IMPLEMENTATION.
6162 client->view_display( z2ui5_cl_xml_view=>factory(
6263 )->page( `abap2UI5 - Hello World`
6364 )->text( `My Text`
64- )->button( text = `post` press = client->_event( `POST` ) ) ).
65+ )->button( text = `post` press = client->_event( `POST` )
66+ )->stringify( ) ).
6567
6668 CASE client->get( )-event.
6769 WHEN `POST`.
@@ -91,7 +93,8 @@ CLASS z2ui5_cl_app_hello_world IMPLEMENTATION.
9193 )->page( `abap2UI5 - Hello World`
9294 )->text( `My Text`
9395 )->button( text = `post` press = client->_event( `POST` )
94- )->input( client->_bind_edit( name ) ) ).
96+ )->input( client->_bind_edit( name )
97+ )->stringify( ) ).
9598
9699 CASE client->get( )-event.
97100 WHEN `POST`.
You can’t perform that action at this time.
0 commit comments