mirror of
https://github.com/abap2UI5/abap2UI5.git
synced 2025-04-29 20:38:43 +08:00
add maxSuggestionWidth to input method (#342)
Property maxSuggestionWidth of class sap.m.Input added to abap method z2ui5_cl_xml_view->input
This commit is contained in:
parent
f055295954
commit
8ad8eaba27
|
@ -299,6 +299,7 @@ CLASS z2ui5_cl_xml_view DEFINITION
|
|||
submit TYPE clike OPTIONAL
|
||||
valueLiveUpdate TYPE clike OPTIONAL
|
||||
autocomplete TYPE clike OPTIONAL
|
||||
maxSuggestionWidth TYPE clike OPTIONAL
|
||||
PREFERRED PARAMETER value
|
||||
RETURNING VALUE(result) TYPE REF TO z2ui5_cl_xml_view.
|
||||
|
||||
|
@ -1677,7 +1678,8 @@ CLASS z2ui5_cl_xml_view IMPLEMENTATION.
|
|||
( n = `valueLiveUpdate` v = lcl_utility=>get_json_boolean( valueLiveUpdate ) )
|
||||
( n = `submit` v = lcl_utility=>get_json_boolean( submit ) )
|
||||
( n = `showValueHelp` v = lcl_utility=>get_json_boolean( showvaluehelp ) )
|
||||
( n = `class` v = class ) ) ).
|
||||
( n = `class` v = class )
|
||||
( n = `maxSuggestionWidth` v = maxsuggestionwidth ) ) ).
|
||||
ENDMETHOD.
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user