Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/development/model/tables.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ CLASS z2ui5_cl_sample_tab IMPLEMENTATION.
)->text( `{COUNT}`
)->text( `{VALUE}`
)->text( `{DESCR}` ).
client->view_display( tab ).
client->view_display( tab->stringify( ) ).

ENDMETHOD.
ENDCLASS.
Expand Down Expand Up @@ -66,7 +66,7 @@ Making a table editable is a simple change. You just need to switch the binding
)->text( `{COUNT}`
)->text( `{VALUE}`
)->text( `{DESCR}` ).
client->view_display( tab ).
client->view_display( tab->stringify( ) ).

ENDMETHOD.
```
Expand Down Expand Up @@ -134,7 +134,7 @@ CLASS z2ui5_cl_sample_tree IMPLEMENTATION.
selected = `{IS_SELECTED}`
title = `{TEXT}` ).

client->view_display( tree ).
client->view_display( tree->stringify( ) ).

ENDMETHOD.
ENDCLASS.
Expand Down Expand Up @@ -179,7 +179,7 @@ CLASS z2ui5_cl_sample_nested_structures IMPLEMENTATION.
lo_cells->text( `{S_DETAILS/CREATE_DATE}` ).
lo_cells->text( `{S_DETAILS/CREATE_BY}` ).

client->view_display( tab ).
client->view_display( tab->stringify( ) ).

ENDMETHOD.
ENDCLASS.
Expand Down
1 change: 1 addition & 0 deletions docs/development/navigation/share.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ ENDCLASS.

CLASS z2ui5_cl_sample_share IMPLEMENTATION.
METHOD z2ui5_if_app~main.

CASE abap_true.

WHEN client->check_on_navigated( ).
Expand Down
4 changes: 2 additions & 2 deletions docs/technical/cloud.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ CLASS z2ui5_cl_demo_app_003 IMPLEMENTATION.
)->standard_list_item(
title = `{SALESORDER}`
description = `{SALESORGANIZATION}` ).
client->view_display( view ).
client->view_display( view->stringify( ) ).
ENDMETHOD.
ENDCLASS.
Expand Down Expand Up @@ -89,7 +89,7 @@ CLASS z2ui5_cl_demo_app_003 IMPLEMENTATION.
)->standard_list_item(
title = `{VBELN}`
description = `{VKORG}` ).
client->view_display( view ).
client->view_display( view->stringify( ) ).
ENDMETHOD.
ENDCLASS.
Expand Down
2 changes: 1 addition & 1 deletion docs/technical/dx.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ CLASS zcl_app_alv IMPLEMENTATION.
lo_cell->text( `{MSGNR}` ).
lo_cell->text( `{TEXT}` ).

client->view_display( tab ).
client->view_display( tab->stringify( ) ).

ENDMETHOD.
ENDCLASS.
Expand Down