card implementation in xml view (#1025)

This commit is contained in:
choper725 2024-03-18 21:02:40 +02:00 committed by GitHub
parent 29b9072f4e
commit dd59001fab
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1269,6 +1269,7 @@ CLASS z2ui5_cl_xml_view DEFINITION
!itempress TYPE clike OPTIONAL
!select TYPE clike OPTIONAL
!delete TYPE clike OPTIONAL
!class TYPE clike OPTIONAL
RETURNING
VALUE(result) TYPE REF TO z2ui5_cl_xml_view .
METHODS custom_list_item
@ -3976,7 +3977,7 @@ CLASS Z2UI5_CL_XML_VIEW IMPLEMENTATION.
METHOD card_header.
result = _generic( name = `Header`
ns = `f`
ns = `card`
t_prop = VALUE #(
( n = `id` v = id )
( n = `class` v = class )
@ -5607,6 +5608,7 @@ CLASS Z2UI5_CL_XML_VIEW IMPLEMENTATION.
t_prop = VALUE #( ( n = `headerText` v = headertext )
( n = `items` v = items )
( n = `mode` v = mode )
( n = `class` v = class )
( n = `itemPress` v = itempress )
( n = `select` v = select )
( n = `selectionChange` v = selectionchange )
@ -8144,6 +8146,7 @@ CLASS Z2UI5_CL_XML_VIEW IMPLEMENTATION.
( n = `xmlns:table` v = `sap.ui.table` )
( n = `xmlns:template` v = `http://schemas.sap.com/sapui5/extension/sap.ui.core.template/1` )
( n = `xmlns:f` v = `sap.f` )
( n = `xmlns:card` v = `sap.f.cards` )
( n = `xmlns:form` v = `sap.ui.layout.form` )
( n = `xmlns:editor` v = `sap.ui.codeeditor` )
( n = `xmlns:mchart` v = `sap.suite.ui.microchart` )