FlexibleColumnLayout - aggregations are missing (#316)

* TreeTable: new parameters

API Reference:
sap.ui.table.TreeTable

New parameters for TreeTable and TreeColumn

* Update src/z2ui5_cl_xml_view.clas.abap

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

* Update src/z2ui5_cl_xml_view.clas.abap

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

* Update src/z2ui5_cl_xml_view.clas.abap

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

* FilterBar: Namespace "fb" was missing

FilterBar: Namespace "fb" was missing:
xmlns:fb="sap.ui.comp.filterbar"

* Update src/z2ui5_cl_xml_view.clas.abap

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

* FlexibleColumnLayout - aggregations are missing

sap.f.FlexibleColumnLayout: - aggregations are missing:
beginColumnPages
midColumnPages
endColumnPages

* Update src/z2ui5_cl_xml_view.clas.abap

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

* Update src/z2ui5_cl_xml_view.clas.abap

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

* Update src/z2ui5_cl_xml_view.clas.abap

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

* Update src/z2ui5_cl_xml_view.clas.abap

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

* Update src/z2ui5_cl_xml_view.clas.abap

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

* Update src/z2ui5_cl_xml_view.clas.abap

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

* Update src/z2ui5_cl_xml_view.clas.abap

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

* 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-06-27 15:26:09 +02:00 committed by GitHub
parent 5faa80a3fd
commit 8f2a96866f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -925,8 +925,9 @@ CLASS Z2UI5_CL_XML_VIEW IMPLEMENTATION.
METHOD begin_column_pages.
" todo, implement method
result = me.
result = _generic( name = `beginColumnPages`
ns = 'f' ).
ENDMETHOD.
@ -1254,8 +1255,10 @@ CLASS Z2UI5_CL_XML_VIEW IMPLEMENTATION.
METHOD end_column_pages.
" todo, implement method
result = me.
result = _generic( name = `endColumnPages`
ns = 'f' ).
ENDMETHOD.
@ -1728,8 +1731,10 @@ CLASS Z2UI5_CL_XML_VIEW IMPLEMENTATION.
METHOD mid_column_pages.
" todo, implement method
result = me.
result = _generic( name = `midColumnPages`
ns = 'f' ).
ENDMETHOD.