add control sap.m.SuggestionItem (#665)

This commit is contained in:
Daniel Wegner 2023-11-21 22:40:01 +01:00 committed by GitHub
parent 2e30e1c17d
commit 9d075fc490
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -366,6 +366,16 @@ CLASS z2ui5_cl_xml_view DEFINITION
RETURNING
VALUE(result) TYPE REF TO z2ui5_cl_xml_view .
METHODS suggestion_item
IMPORTING
!description TYPE clike OPTIONAL
!icon TYPE clike OPTIONAL
!key TYPE clike OPTIONAL
!text TYPE clike OPTIONAL
!textdirection TYPE clike OPTIONAL
RETURNING
VALUE(result) TYPE REF TO z2ui5_cl_xml_view.
METHODS suggestion_columns
RETURNING
VALUE(result) TYPE REF TO z2ui5_cl_xml_view .
@ -6144,6 +6154,17 @@ CLASS Z2UI5_CL_XML_VIEW IMPLEMENTATION.
ENDMETHOD.
METHOD suggestion_item.
result = me.
_generic( name = `SuggestionItem`
t_prop = VALUE #( ( n = `description` v = description )
( n = `icon` v = icon )
( n = `key` v = key )
( n = `text` v = text )
( n = `textDirection` v = textdirection ) ) ).
ENDMETHOD.
METHOD suggestion_rows.
result = _generic( `suggestionRows` ).
ENDMETHOD.