Object page layout: new parameter "showFooter" (#568)

* Object page layout: new parameter "showFooter"

* Update z2ui5_cl_xml_view.clas.abap

* 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-26 13:06:23 +02:00 committed by GitHub
parent 622e1766c1
commit 01503e7bcc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,4 @@
CLASS z2ui5_cl_xml_view DEFINITION
CLASS z2ui5_cl_xml_view DEFINITION
PUBLIC
FINAL
CREATE PROTECTED.
@ -174,6 +174,7 @@
!showeditheaderbutton TYPE clike OPTIONAL
!editheaderbuttonpress TYPE clike OPTIONAL
!uppercaseanchorbar TYPE clike OPTIONAL
!showfooter TYPE clike OPTIONAL
RETURNING
VALUE(result) TYPE REF TO z2ui5_cl_xml_view.
@ -4396,7 +4397,8 @@ CLASS Z2UI5_CL_XML_VIEW IMPLEMENTATION.
( n = `showTitleInHeaderContent` v = z2ui5_cl_fw_utility=>boolean_abap_2_json( showtitleinheadercontent ) )
( n = `showEditHeaderButton` v = z2ui5_cl_fw_utility=>boolean_abap_2_json( showeditheaderbutton ) )
( n = `editHeaderButtonPress` v = editheaderbuttonpress )
( n = `upperCaseAnchorBar` v = uppercaseanchorbar ) ) ).
( n = `upperCaseAnchorBar` v = uppercaseanchorbar )
( n = `showFooter` v = z2ui5_cl_fw_utility=>boolean_abap_2_json( showfooter ) ) ) ).
ENDMETHOD.