mirror of
https://github.com/abap2UI5/abap2UI5.git
synced 2025-04-29 23:06:30 +08:00
add control sap.m.SuggestionItem (#665)
This commit is contained in:
parent
2e30e1c17d
commit
9d075fc490
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue
Block a user