Skip to content

Commit

Permalink
Add "class" to "expandable_text" method
Browse files Browse the repository at this point in the history
  • Loading branch information
francisco-milan committed Oct 15, 2024
1 parent 23411e4 commit 1a43e2d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/02/z2ui5_cl_xml_view.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -3445,6 +3445,7 @@ CLASS z2ui5_cl_xml_view DEFINITION
textdirection TYPE clike OPTIONAL
!visible TYPE clike OPTIONAL
wrappingtype TYPE clike OPTIONAL
class TYPE clike OPTIONAL
RETURNING VALUE(result) TYPE REF TO z2ui5_cl_xml_view.

METHODS select
Expand Down Expand Up @@ -5340,7 +5341,8 @@ CLASS z2ui5_cl_xml_view IMPLEMENTATION.
( n = `textAlign` v = textalign )
( n = `textDirection` v = textdirection )
( n = `wrappingType` v = wrappingtype )
( n = `visible` v = z2ui5_cl_util=>boolean_abap_2_json( visible ) ) ) ).
( n = `visible` v = z2ui5_cl_util=>boolean_abap_2_json( visible ) )
( n = `class` v = class ) ) ).
ENDMETHOD.


Expand Down

0 comments on commit 1a43e2d

Please sign in to comment.