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/grid/toolbar.md
+14-22Lines changed: 14 additions & 22 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,9 +12,9 @@ position: 45
12
12
13
13
The [Blazor Grid](https://demos.telerik.com/blazor-ui/grid/overview) toolbar can render built-in and custom tools. This article describes the built-in tools and shows how to add [custom tools](#custom-tools) or create a [custom toolbar](#custom-toolbar-configuration).
14
14
15
-
## Built-in Tools
15
+
## Built-In Tools
16
16
17
-
By default, the [Blazor Grid](https://demos.telerik.com/blazor-ui/grid/overview) does not automatically render all built-in tools when a toolbar is added. To include specific tools in a [toolbar configuration](#toolbar-tools-configuration), you need to explicitly define them using the tool tags below.
17
+
By default, the [Blazor Grid](https://demos.telerik.com/blazor-ui/grid/overview) does not automatically render all built-in tools when a toolbar is added. To include specific tools in a [toolbar configuration](#toolbar-tools-configuration), you need to explicitly define them using the respective tool tags below.
18
18
19
19
### Command Tools
20
20
@@ -35,7 +35,7 @@ By default, the [Blazor Grid](https://demos.telerik.com/blazor-ui/grid/overview)
35
35
36
36
## Custom Tools
37
37
38
-
In addition to built-in tools, the Grid also supports custom tools. Use the `<GridToolBarCustomTool>` tag, which is a standard Blazor `RenderFragment`. See the example below.
38
+
In addition to the built-in tools, the Grid also supports custom tools. Use the `<GridToolBarCustomTool>` tag, which is a standard Blazor `RenderFragment`. See the example below.
39
39
40
40
## Toolbar Tools Configuration
41
41
@@ -151,7 +151,9 @@ Add a `<GridToolBar>` tag inside `<TelerikGrid>` to configure a toolbar, for exa
151
151
152
152
## Custom Toolbar Configuration
153
153
154
-
Add a `<GridToolBarTemplate>` tag inside `<TelerikGrid>` to configure a custom toolbar. You can add your own HTML and components to create a more complex layout in the grid header to match your business needs and also `GridCommandButton` instances (read more about the features available in those buttons in the [Command Column](slug://components/grid/columns/command) article).
154
+
Add a `<GridToolBarTemplate>` tag inside `<TelerikGrid>` to configure a custom toolbar. You can add your own HTML and components to create a more complex layout in the Grid header to match your business needs and also `GridCommandButton` instances (read more about the features available in those buttons in the [Command Column](slug://components/grid/columns/command) article).
155
+
156
+
Note that when using `<GridToolBarTemplate>`, you need to use the `Tab` key to navigate through the items. This is because the `<GridToolBarTemplate>` allows rendering of custom elements, unlike `<GridToolBar>`, where the default keyboard navigation between tools is handled using the arrow keys.
155
157
156
158
>caption Custom Grid Toolbar
157
159
@@ -161,24 +163,14 @@ Add a `<GridToolBarTemplate>` tag inside `<TelerikGrid>` to configure a custom t
Copy file name to clipboardExpand all lines: components/treelist/toolbar.md
+14-22Lines changed: 14 additions & 22 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: Toolbar
3
3
page_title: TreeList - Toolbar
4
-
description: Use toolbar and custom actions in treelist for Blazor.
4
+
description: Use toolbar and custom actions in Treelist for Blazor.
5
5
slug: treelist-toolbar
6
6
tags: telerik,blazor,treelist,toolbar
7
7
published: True
@@ -12,9 +12,9 @@ position: 45
12
12
13
13
The [Blazor TreeList](https://demos.telerik.com/blazor-ui/treelist/overview) toolbar can render built-in and custom tools. This article describes the built-in tools and shows how to add custom tools or [customize the toolbar](#custom-toolbar-configuration).
14
14
15
-
## Built-in Tools
15
+
## Built-In Tools
16
16
17
-
By default, the [Blazor TreeList](https://demos.telerik.com/blazor-ui/treelist/overview) displays all its built-in tools in the order below. Use the tool tag if you need to define a tool explicitly in a [toolbar configuration](#toolbar-tools-configuration).
17
+
By default, the [Blazor TreeList](https://demos.telerik.com/blazor-ui/treelist/overview) displays all its built-in tools in the order below. Use the respective tool tag if you need to define a tool explicitly in a [toolbar configuration](#toolbar-tools-configuration).
18
18
19
19
### Command Tools
20
20
@@ -33,7 +33,7 @@ By default, the [Blazor TreeList](https://demos.telerik.com/blazor-ui/treelist/o
33
33
34
34
## Custom Tools
35
35
36
-
In addition to built-in tools, the TreeList also supports custom tools. Use the `<TreeListToolBarCustomTool>` tag, which is a standard Blazor `RenderFragment`. See the example below.
36
+
In addition to the built-in tools, the TreeList also supports custom tools. Use the `<TreeListToolBarCustomTool>` tag, which is a standard Blazor `RenderFragment`. See the example below.
37
37
38
38
## Toolbar Tools Configuration
39
39
@@ -228,6 +228,8 @@ Add a `<TreeListToolBar>` tag inside `<TelerikTreeList>` to configure a toolbar,
228
228
229
229
Add a `<TreeListToolBarTemplate>` tag inside `<TelerikTreeList>` to configure a custom toolbar. You can add your own HTML and components to create a more complex layout in the TreeList header to match your business needs and also `TreeListCommandButton` instances (read more about the features available in those buttons in the [Command Column](slug://treelist-columns-command) article).
230
230
231
+
Note that when using `<TreeListToolBarTemplate>`, you need to use the `Tab` key to navigate through the items. This is because the `<TreeListToolBarTemplate>` allows rendering of custom elements, unlike `<TreeListToolBar>`, where the default keyboard navigation between tools is handled using the arrow keys.
232
+
231
233
>caption Custom TreeList Toolbar
232
234
233
235
````RAZOR
@@ -238,24 +240,14 @@ Add a `<TreeListToolBarTemplate>` tag inside `<TelerikTreeList>` to configure a
0 commit comments