We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7de34e commit c59ddc1Copy full SHA for c59ddc1
docs/development/model.md
@@ -46,19 +46,19 @@ ENDCLASS.
46
CLASS z2ui5_cl_app_hello_world IMPLEMENTATION.
47
METHOD z2ui5_if_app~main.
48
49
- CASE client->get( )-event.
50
- WHEN 'POST'.
51
- client->message_box_display( |Your name is { name }.| ).
52
- RETURN.
53
- ENDCASE.
54
-
55
client->view_display( z2ui5_cl_xml_view=>factory(
56
)->page( 'abap2UI5 - Hello World'
57
)->text( `Enter your name`
58
)->input( client->_bind_edit( name )
59
)->button( text = 'post' press = client->_event( 'POST' )
60
)->stringify( ) ).
61
+ CASE client->get( )-event.
+ WHEN 'POST'.
+ client->message_box_display( |Your name is { name }.| ).
+ RETURN.
+ ENDCASE.
+
62
ENDMETHOD.
63
ENDCLASS.
64
```
0 commit comments