File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -3739,6 +3739,15 @@ CLASS z2ui5_cl_xml_view DEFINITION
3739
3739
RETURNING
3740
3740
VALUE (result ) TYPE REF TO z2ui5_cl_xml_view.
3741
3741
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.
3742
3751
METHODS upload_set
3743
3752
IMPORTING
3744
3753
id TYPE clike OPTIONAL
@@ -9272,6 +9281,17 @@ CLASS z2ui5_cl_xml_view IMPLEMENTATION.
9272
9281
( n = `editable` v = z2ui5_cl_util=>boolean_abap_2_json( editable ) ) ) ).
9273
9282
ENDMETHOD .
9274
9283
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
+
9275
9295
METHOD slider .
9276
9296
result = me .
9277
9297
_generic( name = `Slider`
You can’t perform that action at this time.
0 commit comments