Skip to content

Commit f2582ab

Browse files
authored
Update hello_world.md
1 parent 3faf5ca commit f2582ab

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

docs/get_started/hello_world.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff 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.
4445
ENDCLASS.
@@ -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`.

0 commit comments

Comments
 (0)