mirror of
https://github.com/abap2UI5/abap2UI5.git
synced 2025-04-29 20:38:43 +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
|
@ -216,10 +216,15 @@ CLASS z2ui5_cl_xml_view DEFINITION
|
||||||
|
|
||||||
METHODS breadcrumbs
|
METHODS breadcrumbs
|
||||||
IMPORTING
|
IMPORTING
|
||||||
ns TYPE clike OPTIONAL
|
ns TYPE clike OPTIONAL
|
||||||
link 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
|
RETURNING
|
||||||
VALUE(result) TYPE REF TO z2ui5_cl_xml_view.
|
VALUE(result) TYPE REF TO z2ui5_cl_xml_view.
|
||||||
|
|
||||||
METHODS current_location
|
METHODS current_location
|
||||||
IMPORTING
|
IMPORTING
|
||||||
|
@ -10818,7 +10823,12 @@ CLASS z2ui5_cl_xml_view IMPLEMENTATION.
|
||||||
METHOD breadcrumbs.
|
METHOD breadcrumbs.
|
||||||
result = _generic( ns = ns
|
result = _generic( ns = ns
|
||||||
name = `Breadcrumbs`
|
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.
|
ENDMETHOD.
|
||||||
|
|
||||||
METHOD current_location.
|
METHOD current_location.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user