Added property id to OverflowToolbarButton (#1291)
Some checks are pending
build_downport / build_downport (push) Waiting to run

This commit is contained in:
Christian Wildt 2024-07-25 19:23:14 +02:00 committed by GitHub
parent 8b7877335e
commit aa07556c81
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1053,7 +1053,8 @@ CLASS z2ui5_cl_xml_view DEFINITION
RETURNING VALUE(result) TYPE REF TO z2ui5_cl_xml_view.
METHODS overflow_toolbar_button
IMPORTING !text TYPE clike OPTIONAL
IMPORTING !id TYPE clike OPTIONAL
!text TYPE clike OPTIONAL
!icon TYPE clike OPTIONAL
!type TYPE clike OPTIONAL
!enabled TYPE clike OPTIONAL
@ -7387,7 +7388,8 @@ CLASS z2ui5_cl_xml_view IMPLEMENTATION.
METHOD overflow_toolbar_button.
result = me.
_generic( name = `OverflowToolbarButton`
t_prop = VALUE #( ( n = `press` v = press )
t_prop = VALUE #( ( n = `id` v = id )
( n = `press` v = press )
( n = `text` v = text )
( n = `enabled` v = z2ui5_cl_util=>boolean_abap_2_json( enabled ) )
( n = `icon` v = icon )