Popover: new parameter "showHeader" (#572)

* Popover: new parameter "showHeader"

* Update src/z2ui5_cl_xml_view.clas.abap

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>

---------

Co-authored-by: oblomov <102328295+oblomov-dev@users.noreply.github.com>
Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
This commit is contained in:
axelmohnen 2023-09-28 08:49:12 +02:00 committed by GitHub
parent b7fab3dcec
commit 7a3f9e845c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -108,6 +108,7 @@ CLASS z2ui5_cl_xml_view DEFINITION
!initialfocus TYPE clike OPTIONAL
!contentwidth TYPE clike OPTIONAL
!contentheight TYPE clike OPTIONAL
!showheader type clike OPTIONAL
RETURNING
VALUE(result) TYPE REF TO z2ui5_cl_xml_view.
@ -4615,7 +4616,8 @@ CLASS Z2UI5_CL_XML_VIEW IMPLEMENTATION.
( n = `placement` v = placement )
( n = `initialFocus` v = initialfocus )
( n = `contentHeight` v = contentheight )
( n = `contentWidth` v = contentwidth ) ) ).
( n = `contentWidth` v = contentwidth )
( n = `showHeader` v = z2ui5_cl_fw_utility=>boolean_abap_2_json( showHeader ) ) ) ).
ENDMETHOD.