Skip to content

Automatic Update #22

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/01/03/z2ui6_cl_app_app_js.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@ CLASS z2ui6_cl_app_app_js IMPLEMENTATION.
` style: oControl.getProperty("style"),` && |\n| &&
` fileType: oControl.getProperty("fileType"),` && |\n| &&
` visible: oControl.getProperty("visible"),` && |\n| &&
` uploadOnChange: true,` && |\n| &&
` uploadOnChange: oControl.getProperty("checkDirectUpload"),` && |\n| &&
` enabled: oControl.getProperty("enabled"),` && |\n| &&
` value: oControl.getProperty("path"),` && |\n| &&
` placeholder: oControl.getProperty("placeholder"),` && |\n| &&
Expand Down
2 changes: 1 addition & 1 deletion src/02/z2ui6_cl_http_handler.clas.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<VSEOCLASS>
<CLSNAME>Z2UI6_CL_HTTP_HANDLER</CLSNAME>
<LANGU>E</LANGU>
<DESCRIPT>abap2UI5 - http get handler</DESCRIPT>
<DESCRIPT>abap2UI5 - http handler</DESCRIPT>
<STATE>1</STATE>
<CLSCCINCL>X</CLSCCINCL>
<FIXPT>X</FIXPT>
Expand Down
41 changes: 27 additions & 14 deletions src/02/z2ui6_cl_xml_view.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -681,6 +681,7 @@ CLASS z2ui6_cl_xml_view DEFINITION
valuestatetext TYPE clike OPTIONAL
placeholder TYPE clike OPTIONAL
showsuggestion TYPE clike OPTIONAL
VISIBLE type CLIKE optional
RETURNING
VALUE(result) TYPE REF TO z2ui6_cl_xml_view.

Expand Down Expand Up @@ -1116,14 +1117,19 @@ CLASS z2ui6_cl_xml_view DEFINITION
VALUE(result) TYPE REF TO z2ui6_cl_xml_view.

METHODS barcode_scanner_button
IMPORTING
id TYPE clike OPTIONAL
scansuccess TYPE clike OPTIONAL
scanfail TYPE clike OPTIONAL
inputliveupdate TYPE clike OPTIONAL
dialogtitle TYPE clike OPTIONAL
RETURNING
VALUE(result) TYPE REF TO z2ui6_cl_xml_view.
IMPORTING !id TYPE clike OPTIONAL
scansuccess TYPE clike OPTIONAL
scanfail TYPE clike OPTIONAL
inputliveupdate TYPE clike OPTIONAL
dialogtitle TYPE clike OPTIONAL
disableBarcodeInputDialog TYPE clike OPTIONAL
frameRate TYPE clike OPTIONAL
keepCameraScan TYPE clike OPTIONAL
preferFrontCamera TYPE clike OPTIONAL
provideFallback TYPE clike OPTIONAL
!width TYPE clike OPTIONAL
zoom TYPE clike OPTIONAL
RETURNING VALUE(result) TYPE REF TO z2ui6_cl_xml_view.

METHODS message_popover
IMPORTING
Expand Down Expand Up @@ -5145,12 +5151,18 @@ CLASS z2ui6_cl_xml_view IMPLEMENTATION.
METHOD barcode_scanner_button.
result = _generic( name = `BarcodeScannerButton`
ns = 'ndc'
t_prop = VALUE #( ( n = `id` v = id )
( n = `scanSuccess` v = scansuccess )
( n = `scanFail` v = scanfail )
( n = `inputLiveUpdate` v = inputliveupdate )
( n = `dialogTitle` v = dialogtitle ) ) ).

t_prop = VALUE #( ( n = `id` v = id )
( n = `scanSuccess` v = scansuccess )
( n = `scanFail` v = scanfail )
( n = `inputLiveUpdate` v = inputliveupdate )
( n = `dialogTitle` v = dialogtitle )
( n = `disableBarcodeInputDialog` v = disableBarcodeInputDialog )
( n = `frameRate` v = frameRate )
( n = `keepCameraScan` v = keepCameraScan )
( n = `preferFrontCamera` v = preferFrontCamera )
( n = `provideFallback` v = provideFallback )
( n = `width` v = width )
( n = `zoom` v = zoom ) ) ).
ENDMETHOD.

METHOD bars.
Expand Down Expand Up @@ -7514,6 +7526,7 @@ CLASS z2ui6_cl_xml_view IMPLEMENTATION.
( n = `change` v = change )
( n = `valueHelpRequest` v = valuehelprequest )
( n = `class` v = class )
( n = `visible` v = z2ui6_cl_util=>boolean_abap_2_json( visible ) )
( n = `required` v = required )
( n = `valueState` v = valuestate )
( n = `valueStateText` v = valuestatetext )
Expand Down