add class property to table (#1412)

This commit is contained in:
Christian Günter 2024-09-11 15:04:57 +02:00 committed by GitHub
parent 29f315f038
commit 430db60fdd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -146,6 +146,7 @@ CLASS z2ui5_cl_xml_view DEFINITION
METHODS table METHODS table
IMPORTING !id TYPE clike OPTIONAL IMPORTING !id TYPE clike OPTIONAL
items TYPE clike OPTIONAL items TYPE clike OPTIONAL
class TYPE clike OPTIONAL
growing TYPE clike OPTIONAL growing TYPE clike OPTIONAL
growingthreshold TYPE clike OPTIONAL growingthreshold TYPE clike OPTIONAL
growingscrolltoload TYPE clike OPTIONAL growingscrolltoload TYPE clike OPTIONAL
@ -8677,6 +8678,7 @@ CLASS z2ui5_cl_xml_view IMPLEMENTATION.
t_prop = VALUE #( t_prop = VALUE #(
( n = `items` v = items ) ( n = `items` v = items )
( n = `headerText` v = headertext ) ( n = `headerText` v = headertext )
( n = `class` v = class )
( n = `growing` v = growing ) ( n = `growing` v = growing )
( n = `growingThreshold` v = growingthreshold ) ( n = `growingThreshold` v = growingthreshold )
( n = `growingScrollToLoad` v = growingscrolltoload ) ( n = `growingScrollToLoad` v = growingscrolltoload )