Skip to content

Commit c6878d9

Browse files
Viktor HoffmannViktor Hoffmann
authored andcommitted
1 parent 8cad213 commit c6878d9

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

src/02/z2ui5_cl_xml_view.clas.abap

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3739,6 +3739,15 @@ CLASS z2ui5_cl_xml_view DEFINITION
37393739
RETURNING
37403740
VALUE(result) TYPE REF TO z2ui5_cl_xml_view.
37413741

3742+
3743+
3744+
METHODS overflow_toolbar_layout_data
3745+
IMPORTING
3746+
priority TYPE clike OPTIONAL
3747+
group TYPE clike OPTIONAL
3748+
closeOverflowOnInteraction TYPE clike OPTIONAL
3749+
RETURNING
3750+
VALUE(result) TYPE REF TO z2ui5_cl_xml_view.
37423751
METHODS upload_set
37433752
IMPORTING
37443753
id TYPE clike OPTIONAL
@@ -9272,6 +9281,17 @@ CLASS z2ui5_cl_xml_view IMPLEMENTATION.
92729281
( n = `editable` v = z2ui5_cl_util=>boolean_abap_2_json( editable ) ) ) ).
92739282
ENDMETHOD.
92749283

9284+
METHOD overflow_toolbar_layout_data.
9285+
9286+
result = _generic(
9287+
name = `OverflowToolbarLayoutData`
9288+
t_prop = VALUE #(
9289+
( n = `closeOverflowOnInteraction` v = z2ui5_cl_util=>boolean_abap_2_json( closeOverflowOnInteraction ) )
9290+
( n = `group` v = group )
9291+
( n = `priority` v = priority ) ) ).
9292+
9293+
ENDMETHOD.
9294+
92759295
METHOD slider.
92769296
result = me.
92779297
_generic( name = `Slider`

0 commit comments

Comments
 (0)