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 8ca6149 commit 3a69566Copy full SHA for 3a69566
docs/development/model/tables.md
@@ -29,9 +29,8 @@ CLASS z2ui5_cl_sample_tab IMPLEMENTATION.
29
INSERT ls_row INTO TABLE t_tab.
30
ENDDO.
31
32
- DATA(tab) = z2ui5_cl_xml_view=>factory( )->page( )->table(
33
- items = client->_bind( t_tab ) ).
34
-
+ DATA(tab) = z2ui5_cl_xml_view=>factory( )->page(
+ )->table( client->_bind( t_tab ) ).
35
tab->columns(
36
)->column( )->text( 'Counter' )->get_parent(
37
)->column( )->text( 'Value' )->get_parent(
@@ -41,7 +40,7 @@ CLASS z2ui5_cl_sample_tab IMPLEMENTATION.
41
40
)->text( '{VALUE}'
42
)->text( '{DESCR}' ).
43
44
- client->view_display( view->stringify( ) ).
+ client->view_display( tab ).
45
46
ENDMETHOD.
47
ENDCLASS.
0 commit comments