update xml ui.table (#1062)

This commit is contained in:
choper725 2024-04-08 10:16:41 +03:00 committed by GitHub
parent 4e0d1e23b2
commit 581e8da68c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1569,6 +1569,7 @@ CLASS z2ui5_cl_xml_view DEFINITION
!wrapping TYPE clike OPTIONAL
!wrappingtype TYPE clike OPTIONAL
!id TYPE clike OPTIONAL
!visible TYPE clike OPTIONAL
PREFERRED PARAMETER text
RETURNING
VALUE(result) TYPE REF TO z2ui5_cl_xml_view .
@ -1769,6 +1770,7 @@ CLASS z2ui5_cl_xml_view DEFINITION
!customfilter TYPE clike OPTIONAL
!id TYPE clike OPTIONAL
!flex TYPE clike OPTIONAL
!selectionBehavior TYPE clike OPTIONAL
PREFERRED PARAMETER rows
RETURNING
VALUE(result) TYPE REF TO z2ui5_cl_xml_view .
@ -8260,6 +8262,7 @@ CLASS Z2UI5_CL_XML_VIEW IMPLEMENTATION.
( n = `maxLines` v = maxlines )
( n = `renderWhitespace` v = renderwhitespace )
( n = `textAlign` v = textalign )
( n = `visible` v = z2ui5_cl_util=>boolean_abap_2_json( visible ) )
( n = `textDirection` v = textdirection )
( n = `width` v = width )
( n = `id` v = id )
@ -8688,17 +8691,17 @@ CLASS Z2UI5_CL_XML_VIEW IMPLEMENTATION.
( n = `editable` v = z2ui5_cl_util=>boolean_abap_2_json( editable ) )
( n = `enableCellFilter` v = z2ui5_cl_util=>boolean_abap_2_json( enablecellfilter ) )
( n = `enableGrouping` v = z2ui5_cl_util=>boolean_abap_2_json( enablegrouping ) )
( n = `senableSelectAll` v = z2ui5_cl_util=>boolean_abap_2_json( enableselectall ) )
( n = `enableSelectAll` v = z2ui5_cl_util=>boolean_abap_2_json( enableselectall ) )
( n = `firstVisibleRow` v = firstvisiblerow )
( n = `fixedBottomRowCount` v = fixedbottomrowcount )
( n = `fixedColumnCount` v = fixedcolumncount )
( n = `rowActionCount` v = rowactioncount )
( n = `fixedRowCount` v = fixedrowcount )
( n = `minAutoRowCount` v = minautorowcount )
( n = `minAutoRowCount` v = minautorowcount )
( n = `rowHeight` v = rowheight )
( n = `selectedIndex` v = selectedindex )
( n = `selectionMode` v = selectionmode )
( n = `selectionBehavior` v = selectionBehavior )
( n = `showColumnVisibilityMenu` v = z2ui5_cl_util=>boolean_abap_2_json( showcolumnvisibilitymenu ) )
( n = `showNoData` v = z2ui5_cl_util=>boolean_abap_2_json( shownodata ) )
( n = `threshold` v = threshold )