Add "type" to method "object_list_item" (#1450)

This commit is contained in:
Francisco Milán 2024-09-24 23:57:18 -06:00 committed by GitHub
parent 1c9efb3561
commit 3a4192d3e0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 6 additions and 2 deletions

View File

@ -23,6 +23,7 @@ CLASS z2ui5_cl_pop_error DEFINITION
ENDCLASS.
CLASS z2ui5_cl_pop_error IMPLEMENTATION.
METHOD factory.

View File

@ -35,7 +35,6 @@ CLASS z2ui5_cl_pop_messages DEFINITION
METHODS view_display.
PRIVATE SECTION.
ENDCLASS.

View File

@ -51,6 +51,7 @@ CLASS z2ui5_cl_pop_table IMPLEMENTATION.
afterclose = client->_event( 'BUTTON_CONFIRM' )
stretch = abap_true
title = title
* icon = 'sap-icon://edit'
)->content( ).
DATA(tab) = popup->table(
@ -110,6 +111,7 @@ CLASS z2ui5_cl_pop_table IMPLEMENTATION.
client->popup_destroy( ).
client->nav_app_leave( client->get_app( client->get( )-s_draft-id_prev_app_stack ) ).
ENDCASE.
ENDMETHOD.

View File

@ -2841,6 +2841,7 @@ CLASS z2ui5_cl_xml_view DEFINITION
titletextdirection TYPE clike OPTIONAL
press TYPE clike OPTIONAL
selected TYPE clike OPTIONAL
type TYPE clike OPTIONAL
RETURNING VALUE(result) TYPE REF TO z2ui5_cl_xml_view.
METHODS detail_box
@ -7367,7 +7368,8 @@ CLASS z2ui5_cl_xml_view IMPLEMENTATION.
( n = `titleTextDirection` v = titletextdirection )
( n = `iconDensityAware` v = z2ui5_cl_util=>boolean_abap_2_json( icondensityaware ) )
( n = `press` v = press )
( n = `selected` v = z2ui5_cl_util=>boolean_abap_2_json( selected ) ) ) ).
( n = `selected` v = z2ui5_cl_util=>boolean_abap_2_json( selected ) )
( n = `type` v = type ) ) ).
ENDMETHOD.