@@ -54,7 +54,9 @@ CLASS Z2UI5_CL_DEMO_APP_292 IMPLEMENTATION.
54
54
class = `sapUiContentPadding`
55
55
width = `100%`
56
56
)->title( text = `Breadcrumbs with current page aggregation set`
57
- )->breadcrumbs(
57
+ )->breadcrumbs( id = `idBreadcrumbs`
58
+ separatorstyle = `{/selected}`
59
+ currentlocationtext = `Page 7`
58
60
)->link( text = `Home`
59
61
press = client->_event( val = `onPress` t_arg = VALUE #( ( `${$source>/text}` ) ) )
60
62
)->link( text = `Page 1`
@@ -67,12 +69,27 @@ CLASS Z2UI5_CL_DEMO_APP_292 IMPLEMENTATION.
67
69
press = client->_event( val = `onPress` t_arg = VALUE #( ( `${$source>/text}` ) ) )
68
70
)->link( text = `Page 5`
69
71
press = client->_event( val = `onPress` t_arg = VALUE #( ( `${$source>/text}` ) ) )
70
- )->current_location(
71
72
)->link( text = `Page 6`
72
73
press = client->_event( val = `onPress` t_arg = VALUE #( ( `${$source>/text}` ) ) )
73
74
)->get_parent(
74
75
)->get_parent( ).
75
76
77
+ page->hbox( alignitems = `Center`
78
+ )->label( labelfor = `idSeparatorSelect`
79
+ text = `Change separator style`
80
+
81
+ )->select( class = `sapUiSmallMarginBegin`
82
+ id = `idSeparatorSelect`
83
+ selectedkey = `{/selected}`
84
+ change = 'onChange'
85
+ )->item( key = `Slash` text = `Slash`
86
+ )->item( key = `BackSlash` text = `BackSlash`
87
+ )->item( key = `DoubleSlash` text = `DoubleSlash`
88
+ )->item( key = `DoubleBackSlash` text = `DoubleBackSlash`
89
+ )->item( key = `GreaterThan` text = `GreaterThan`
90
+ )->item( key = `DoubleGreaterThan` text = `DoubleGreaterThan`
91
+ ).
92
+
76
93
client->view_display( page->stringify( ) ).
77
94
78
95
ENDMETHOD .
0 commit comments