Skip to content

Commit ad8d364

Browse files
author
Kendo Bot
committed
Sync with Kendo UI Professional
1 parent 44a3dd1 commit ad8d364

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

docs/api/javascript/ui/breadcrumb.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,11 +102,11 @@ Defines the icon classes (the `span` element).
102102

103103
### items.showIcon `Boolean`
104104

105-
Defines whether to show the icon.
105+
Defines whether to show the icon. Default value is *true* for `rootItem` and *false* for `item`.
106106

107107
### items.showText `Boolean`
108108

109-
Defines whether to show the text.
109+
Defines whether to show the text. Default value is *false* for `rootItem` and *true* for `item`.
110110

111111
### gap `Number` *(default: 0)*
112112

@@ -256,7 +256,7 @@ The path segments separated by slash.
256256
}).getKendoBreadcrumb();
257257

258258
breadcrumb.items([
259-
{ type: "rootitem", text: "Home", showText: true. showIcon: false }
259+
{ type: "rootitem", text: "Home", showText: true, showIcon: false }
260260
]);
261261
</script>
262262

docs/controls/editors/editor/formatpainter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Format a section with the desired bold, italic, underline, font size and font fa
2525

2626
To apply the saved formatting, select the text that you want to format and click the **Apply Format** button.
2727

28-
### Supported formatting
28+
## Supported formatting
2929

3030
The tool will copy and apply all inline styles. Also, any classes and attributes present in the source will be copied to the target.
3131

docs/controls/navigation/breadcrumb/items.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ position: 2
88

99
# Items
1010

11-
The [`items`](/api/javascript/ui/breadcrumb/configuration/items) configuration allows you to set specific attributes to the Breadcrumb items. You can set the text and the icon of an element and determine whether they would be visible or not. The configuration also allows you to add classes for the different elements which are rendered when initializing the widget.
11+
The [`items`](/api/javascript/ui/breadcrumb/configuration/items) configuration allows you to set specific attributes to the Breadcrumb items. You can set the text and the icon of an element and determine whether they would be visible or not. The configuration also allows you to add classes for the different elements which are rendered when initializing the widget.
12+
13+
The default values of the [`showIcon`](api/javascript/ui/breadcrumb/configuration/items.showicon) and [`showText`](api/javascript/ui/breadcrumb/configuration/items.showtext) configurations are different for the two types of items. The `showIcon`'s default value is *true* for `rootItem` and *false* for `item`. The `showText` configuration is by default *false* for `rootitem` and *true* for `item`.
1214

1315
The following example demonstrates how the attributes of the Breadcrumb items can be set through the *items* configuration.
1416

0 commit comments

Comments
 (0)