From 430db60fdd8e5c0f83ba4a49edeb7c91be9d5674 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20G=C3=BCnter?= Date: Wed, 11 Sep 2024 15:04:57 +0200 Subject: [PATCH] add class property to table (#1412) --- src/02/z2ui5_cl_xml_view.clas.abap | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/02/z2ui5_cl_xml_view.clas.abap b/src/02/z2ui5_cl_xml_view.clas.abap index 10b7f4eb..cc6a8153 100644 --- a/src/02/z2ui5_cl_xml_view.clas.abap +++ b/src/02/z2ui5_cl_xml_view.clas.abap @@ -146,6 +146,7 @@ CLASS z2ui5_cl_xml_view DEFINITION METHODS table IMPORTING !id TYPE clike OPTIONAL items TYPE clike OPTIONAL + class TYPE clike OPTIONAL growing TYPE clike OPTIONAL growingthreshold TYPE clike OPTIONAL growingscrolltoload TYPE clike OPTIONAL @@ -8677,6 +8678,7 @@ CLASS z2ui5_cl_xml_view IMPLEMENTATION. t_prop = VALUE #( ( n = `items` v = items ) ( n = `headerText` v = headertext ) + ( n = `class` v = class ) ( n = `growing` v = growing ) ( n = `growingThreshold` v = growingthreshold ) ( n = `growingScrollToLoad` v = growingscrolltoload )