From 54f97e53dd4882cde06ff44cd06eae6e7aac9938 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Zinn=C3=B6cker?= <29286643+mzinnoecker@users.noreply.github.com> Date: Thu, 12 Dec 2024 14:51:04 +0100 Subject: [PATCH] Added some more properties for SmartMultiInput (#1646) --- src/02/z2ui5_cl_xml_view.clas.abap | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/02/z2ui5_cl_xml_view.clas.abap b/src/02/z2ui5_cl_xml_view.clas.abap index 052a1df4..034aa067 100644 --- a/src/02/z2ui5_cl_xml_view.clas.abap +++ b/src/02/z2ui5_cl_xml_view.clas.abap @@ -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.