You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: components/toolbar/built-in-tools.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,7 @@ The nested `ToolBarButton` tag exposes parameters that allow you to customize th
41
41
|`ImageURL`|`string`| Adds an image to the button. You can provide an image url to this parameter. |
42
42
|`SpriteClass`|`string`| Add a sprite class image to the button. Set this attribute to `k-icon MySpriteClass` where `MySpriteClass` defines the CSS rules for the sprite. |
43
43
|`Overflow`|`ToolBarItemOverflow` enum <br /> (`Auto`) | Specifies whether the item will be hidden when the ToolBar is resized. |
44
-
|`OverflowText`|`string`| If not specified, it will get the normal text of the item. (not valid for Separators)|
44
+
|`OverflowText`|`string`|Defines the button text that will be shown only in the overflow popup. If not specified, it will get the default text of the item. |
45
45
|`Title`|`string`| Maps to the `title` HTML attribute for the `<button>`. |
46
46
|`Visible`|`bool` <br /> `true`| Specifies if the button will be visible in the toolbar. |
47
47
@@ -102,7 +102,7 @@ The nested `ToolBarToggleButton` tag exposes parameters that allow you to custom
102
102
|`Selected`|`bool`| Specifies whether the button is in selected state. You can use it with one and two-way data binding with the `SelectedChanged` event. For more information on how to handle the `SelectedChanged` event see the [Events]({%slug toolbar-events%}) article. |
103
103
|`SpriteClass`|`string`| Add a sprite class image to the button. Set this attribute to `k-icon MySpriteClass` where `MySpriteClass` defines the CSS rules for the sprite. |
104
104
|`Overflow`|`ToolBarItemOverflow` enum <br /> (`Auto`) | Specifies whether the item will be hidden when the ToolBar is resized. |
105
-
|`OverflowText`|`string`| If not specified, it will get the normal text of the item. (not valid for Separators)|
105
+
|`OverflowText`|`string`|Defines the button text that will be shown only in the overflow popup. If not specified, it will get the default text of the item. |
106
106
|`Title`|`string`| Maps to the `title` HTML attribute for the `<button>`. |
107
107
|`Visible`|`bool` <br /> `true`| Specifies if the button will be visible in the toolbar. |
108
108
@@ -162,7 +162,7 @@ The nested `ToolBarButtonGroup` tag exposes parameters that allow you to customi
162
162
|`Enabled`|`bool` <br /> `true`| Specifies if the group is clickable. |
163
163
|`SelectionMode`|`ButtonGroupSelectionMode` enum <br /> `Single`| Specifies whether you can select one or multiple buttons from the group at the same time (applicable for `ToolBarToggleButton` instances inside it). |
164
164
|`Overflow`|`ToolBarItemOverflow` enum <br /> (`Auto`) | Specifies whether the item will be hidden when the ToolBar is resized. |
165
-
|`OverflowText`|`string`| If not specified, it will get the normal text of the item. (not valid for Separators)|
165
+
|`OverflowText`|`string`|Defines the button text that will be shown only in the overflow popup. If not specified, it will get the default text of the item. |
166
166
|`Visible`|`bool` <br /> `true`| Specifies if the group will be visible in the toolbar. |
167
167
|`Width`|`string`| Allows you to control the width of the group. |
Copy file name to clipboardExpand all lines: components/toolbar/overview.md
+2-6Lines changed: 2 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -87,14 +87,14 @@ The Blazor ToolBar provides parameters to configure the component:
87
87
88
88
| Parameter | Type | Description |
89
89
| ----------- | ----------- | ----------- |
90
-
|`Adaptive `|`bool`| Toggles the overflow popup of the toolbar. Consistent with the chosen name for the pager. |
90
+
|`Adaptive `|`bool`| Toggles the overflow popup of the toolbar. Displays an additional anchor on the right of the toolbar, where it places all items which overflow from the toolbar. |
91
91
|`Class`|`string`| The CSS class to be rendered on the main wrapping element of the ToolBar component, which is `<div class="k-toolbar">`. Use for [styling customizations]({%slug themes-override%}). |
92
92
93
93
## Example
94
94
95
95
The Blazor Toolbar has an option for adaptiveness. This option allows you to hide the items overflowing in a popup.
96
96
97
-
>We do **not** recommend using `ToolBarTemplateItem` with the responsive overflow popup as there is a high chance of breaking the popup.
97
+
>When using `ToolBarTemplateItem` with the responsive overflow popup, the template inherits automatically `Overflow` - `ToolBarItemOverflow.Never` behavior.
98
98
99
99
>caption Responsive Overflow Popup
100
100
@@ -137,10 +137,6 @@ The Blazor Toolbar has an option for adaptiveness. This option allows you to hid
Copy file name to clipboardExpand all lines: components/toolbar/separators.md
+1-2Lines changed: 1 addition & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ position: 5
12
12
13
13
You can visually separate the items in the Telerik ToolBar for Blazor. Depending on the needs of your application you can use of the following, or a combination of them:
14
14
15
-
*`ToolBarSeparator` - to separate two items with a solid line, add the `<ToolBarSeparator>` tag between them.
15
+
*`ToolBarSeparator` - to separate two items with a solid line, add the `<ToolBarSeparator>` tag between them. The separator exposes an `Overflow` parameter to specify whether the separator will be hidden when the adaptive ToolBar is resized. Its type is `ToolBarItemOverflow` enum and the default value is `Auto`.
16
16
17
17
*`ToolBarSpacer` - defines empty space in the toolbar which separates the items. The space between the items is automatically calculated to fit the width of the ToolBar. For example, one spacer in the middle of the items will push the second part of items to the right-hand side of the toolbar.
18
18
@@ -38,7 +38,6 @@ You can visually separate the items in the Telerik ToolBar for Blazor. Depending
0 commit comments