Skip to content

Commit d3d87e5

Browse files
abapsheepViktor Hoffmann
andauthored
Update Issue (#247)
* Update Issue * Update Issue --------- Co-authored-by: Viktor Hoffmann <[email protected]>
1 parent 44aacda commit d3d87e5

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

src/z2ui5_cl_demo_app_212.clas.abap

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ CLASS z2ui5_cl_demo_app_212 IMPLEMENTATION.
127127

128128
DATA(popup) = z2ui5_cl_xml_view=>factory_popup( ).
129129

130-
DATA(simple_form) = popup->dialog( contentwidth = '60%'
130+
DATA(content) = popup->dialog( contentwidth = '60%'
131131
)->simple_form( layout = 'ResponsiveGridLayout'
132132
editable = abap_true
133133
)->content( ns = 'form' ).
@@ -143,12 +143,11 @@ CLASS z2ui5_cl_demo_app_212 IMPLEMENTATION.
143143

144144
DATA(text) = ms_layout-t_layout[ fname = dfies->fieldname ]-tlabel.
145145

146-
simple_form->label( design = COND #( WHEN dfies->keyflag = abap_true THEN 'Bold' )
147-
text = text ).
146+
content->label( text = text ).
148147

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 ).
152151

153152
ENDLOOP.
154153

0 commit comments

Comments
 (0)