mirror of
https://github.com/abap2UI5/abap2UI5.git
synced 2025-04-29 15:26:16 +08:00
New parameter for breadcrumbs (#1634)
* New parameter for breadcrumbs * Update src/02/z2ui5_cl_xml_view.clas.abap Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com> --------- Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
This commit is contained in:
parent
dc28189ef2
commit
375135463f
|
@ -218,6 +218,11 @@ CLASS z2ui5_cl_xml_view DEFINITION
|
|||
IMPORTING
|
||||
ns TYPE clike OPTIONAL
|
||||
link TYPE clike OPTIONAL
|
||||
ID type CLIKE optional
|
||||
CLASS type CLIKE optional
|
||||
CURRENTLOCATIONTEXT type CLIKE optional
|
||||
SEPARATORSTYLE type CLIKE optional
|
||||
VISIBLE type CLIKE optional
|
||||
RETURNING
|
||||
VALUE(result) TYPE REF TO z2ui5_cl_xml_view.
|
||||
|
||||
|
@ -10818,7 +10823,12 @@ CLASS z2ui5_cl_xml_view IMPLEMENTATION.
|
|||
METHOD breadcrumbs.
|
||||
result = _generic( ns = ns
|
||||
name = `Breadcrumbs`
|
||||
t_prop = VALUE #( ( n = `link` v = link ) ) ).
|
||||
t_prop = VALUE #( ( n = `link` v = link )
|
||||
( n = `id` v = id )
|
||||
( n = `class` v = class )
|
||||
( n = `currentLocationText` v = currentlocationtext )
|
||||
( n = `separatorStyle` v = separatorStyle )
|
||||
( n = `visible` v = z2ui5_cl_util=>boolean_abap_2_json( visible ) ) ) ).
|
||||
ENDMETHOD.
|
||||
|
||||
METHOD current_location.
|
||||
|
|
Loading…
Reference in New Issue
Block a user