File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -127,7 +127,7 @@ CLASS z2ui5_cl_demo_app_212 IMPLEMENTATION.
127
127
128
128
DATA (popup ) = z2ui5_cl_xml_view=>factory_popup( ).
129
129
130
- DATA (simple_form ) = popup->dialog( contentwidth = '60%'
130
+ DATA (content ) = popup->dialog( contentwidth = '60%'
131
131
)->simple_form( layout = 'ResponsiveGridLayout'
132
132
editable = abap_true
133
133
)->content( ns = 'form' ).
@@ -143,12 +143,11 @@ CLASS z2ui5_cl_demo_app_212 IMPLEMENTATION.
143
143
144
144
DATA (text ) = ms_layout-t_layout[ fname = dfies->fieldname ]-tlabel.
145
145
146
- simple_form->label( design = COND #( WHEN dfies->keyflag = abap_true THEN 'Bold' )
147
- text = text ).
146
+ content->label( text = text ).
148
147
149
- simple_form ->input( value = client->_bind_edit( <val> )
150
- enabled = abap_false
151
- showvaluehelp = abap_false ).
148
+ content ->input( value = client->_bind_edit( <val> )
149
+ enabled = abap_false
150
+ showvaluehelp = abap_false ).
152
151
153
152
ENDLOOP .
154
153
You can’t perform that action at this time.
0 commit comments