mirror of
https://github.com/abap2UI5/abap2UI5.git
synced 2025-04-29 15:16:15 +08:00
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
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:
parent
0b1a3de959
commit
54f97e53dd
|
@ -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.
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user