File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -43,8 +43,8 @@ CLASS z2ui5_cl_demo_app_144 IMPLEMENTATION.
43
43
44
44
LOOP AT t_tab REFERENCE INTO DATA (lr_row ).
45
45
DATA (lv_tabix ) = sy -tabix .
46
- page->input( value = client->_bind_edit( val = lr_row->title tab = t_tab tab_index = lv_tabix ) ).
47
- page->input( value = client->_bind_edit( val = lr_row->value tab = t_tab tab_index = lv_tabix ) ).
46
+ page->input( value = client->_bind_edit( val = lr_row->title tab = ref #( t_tab ) tab_index = lv_tabix ) ).
47
+ page->input( value = client->_bind_edit( val = lr_row->value tab = ref #( t_tab ) tab_index = lv_tabix ) ).
48
48
ENDLOOP .
49
49
50
50
DATA (tab ) = page->table(
@@ -62,10 +62,10 @@ CLASS z2ui5_cl_demo_app_144 IMPLEMENTATION.
62
62
)->input( value = '{TITLE}'
63
63
)->input( value = '{VALUE}' ).
64
64
65
- page->input( value = client->_bind_edit( val = t_tab[ 1 ]-title tab = t_tab tab_index = 1 ) ).
66
- page->input( value = client->_bind_edit( val = t_tab[ 1 ]-value tab = t_tab tab_index = 1 ) ).
67
- page->input( value = client->_bind_edit( val = t_tab[ 2 ]-title tab = t_tab tab_index = 2 ) ).
68
- page->input( value = client->_bind_edit( val = t_tab[ 2 ]-value tab = t_tab tab_index = 2 ) ).
65
+ page->input( value = client->_bind_edit( val = t_tab[ 1 ]-title tab = ref #( t_tab ) tab_index = 1 ) ).
66
+ page->input( value = client->_bind_edit( val = t_tab[ 1 ]-value tab = ref #( t_tab ) tab_index = 1 ) ).
67
+ page->input( value = client->_bind_edit( val = t_tab[ 2 ]-title tab = ref #( t_tab ) tab_index = 2 ) ).
68
+ page->input( value = client->_bind_edit( val = t_tab[ 2 ]-value tab = ref #( t_tab ) tab_index = 2 ) ).
69
69
70
70
client->view_display( view->stringify( ) ).
71
71
Original file line number Diff line number Diff line change @@ -93,8 +93,8 @@ CLASS z2ui5_cl_demo_app_165 IMPLEMENTATION.
93
93
DATA (lv_index ) = sy -tabix .
94
94
95
95
DATA (lo_col ) = lo_columns->column(
96
- visible = client->_bind( val = lr_layout->visible tab = mt_layout tab_index = lv_index )
97
- mergeduplicates = client->_bind( val = lr_layout->mergeduplicates tab = mt_layout tab_index = lv_index ) ).
96
+ visible = client->_bind( val = lr_layout->visible tab = ref #( mt_layout ) tab_index = lv_index )
97
+ mergeduplicates = client->_bind( val = lr_layout->mergeduplicates tab = ref #( mt_layout ) tab_index = lv_index ) ).
98
98
99
99
lo_col->text( text = lr_layout->name ).
100
100
You can’t perform that action at this time.
0 commit comments