From 8f2a96866ff9a16b7dee88ce6e16d107f5561e21 Mon Sep 17 00:00:00 2001 From: axelmohnen Date: Tue, 27 Jun 2023 15:26:09 +0200 Subject: [PATCH] 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> --- src/z2ui5_cl_xml_view.clas.abap | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/src/z2ui5_cl_xml_view.clas.abap b/src/z2ui5_cl_xml_view.clas.abap index e1fd6ef4..3ae9aa01 100644 --- a/src/z2ui5_cl_xml_view.clas.abap +++ b/src/z2ui5_cl_xml_view.clas.abap @@ -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.