Added some more properties for SmartMultiInput (#1646)
Some checks are pending
build_downport / build_downport (push) Waiting to run
build_frontend_classic / build_frontend_classic (push) Waiting to run
build_frontend_cloud / build_frontend_cloud (push) Waiting to run
js_transform / Code-Cleanup (push) Waiting to run
ui5lint / test (push) Waiting to run

This commit is contained in:
Michael Zinnöcker 2024-12-12 14:51:04 +01:00 committed by GitHub
parent 0b1a3de959
commit 54f97e53dd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -5265,6 +5265,11 @@ CLASS z2ui5_cl_xml_view DEFINITION
singletokenmode TYPE clike DEFAULT 'false'
supportmultiselect TYPE clike DEFAULT 'true'
textseparator TYPE clike OPTIONAL
textlabel TYPE clike OPTIONAL
tooltiplabel TYPE clike OPTIONAL
textineditmodesource TYPE clike DEFAULT 'None'
mandatory TYPE clike DEFAULT 'false'
maxlength TYPE clike DEFAULT '0'
RETURNING
VALUE(result) TYPE REF TO z2ui5_cl_xml_view.
PROTECTED SECTION.
@ -11104,7 +11109,12 @@ CLASS z2ui5_cl_xml_view IMPLEMENTATION.
( n = 'requestAtLeastFields' v = requestatleastfields )
( n = 'singleTokenMode' v = singletokenmode )
( n = 'supportMultiSelect' v = supportmultiselect )
( n = 'textSeparator' v = textseparator ) ) ).
( n = 'textSeparator' v = textseparator )
( n = 'textLabel' v = textlabel )
( n = 'tooltipLabel' v = tooltiplabel )
( n = 'textInEditModeSource' v = textineditmodesource )
( n = 'mandatory' v = mandatory )
( n = 'maxLength' v = maxlength ) ) ).
ENDMETHOD.