Declined
Last Updated: 11 Jul 2023 15:00 by ADMIN
Created by: Serghei
Comments: 2
Category: ToolBar
Type: Feature Request
2
Get ability split toolbar items to left & right groups, to allow right align part of items, will be good  if it will work in pair with responsive mode
Declined
Last Updated: 31 Mar 2025 10:21 by ADMIN
Created by: Markus
Comments: 2
Category: ToolBar
Type: Feature Request
2

Please make it possible to define the children of the kendo-toolbar-dropdownbutton in html.

It makes the using of the kendo-toolbar-dropdownbutton much easier.

Translation (i18n), Observables (asyn), additional directives are supported in markup but must be added with additional effort in code.

 

Example:

<kendo-toolbar>
    <kendo-toolbar-dropdownbutton [text]="'Paste Variations'">
        <kendo-toolbar-button [text]="'Paste'" i18n-text (click)="onClick($event)" [disabled]="canPast$|async === false"></kendo-toobar-button>
    </kendo-toolbar-dropdownbutton>
</kendo-toolbar>
Declined
Last Updated: 14 Sep 2026 11:39 by ADMIN
Created by: Saar
Comments: 2
Category: ToolBar
Type: Feature Request
2

Hi,

I want to define some of the items in the toolbar to have overflow = "always", so they'll always be inside the 3 dots menu.
I found a way to do it in JQuery here, but didn't find a way to do it in Angular.

How can I reach this result?

Thanks,

Declined
Last Updated: 14 Sep 2026 11:28 by ADMIN
Created by: Kendo UI
Comments: 1
Category: ToolBar
Type: Feature Request
1
Please provide an input for setting a custom title attribute to the built-in toolbar tools inner elements (like DropDownButton and SplitButton). Currently the only way to achieve this is to create a custom tool, and place a title attribute on the desired internal element/component.
Declined
Last Updated: 14 Sep 2026 11:30 by ADMIN

Hi Kendo Team,

It will be a good addition if the ToolBar button controls allow nesting child components or directive to apply custom icon to the buttons. Similar to the button component where it is available as an option.

Currently the developer would need to create a custom control to achieve that withing the ToolBar component:

https://stackblitz.com/edit/angular-qfzm2q-f6fppa?file=src%2Fapp%2Fcustom-tool.component.ts

    <button kendoButton> 
        <fa-icon [icon]="['fab', 'github']"></fa-icon>
        Browse
    </button>

Improving the button controls would allow the developer to directily define the icon inside the ToolBar button control like the following:

    <kendo-toolbar-button>
        <fa-icon icon="calendar" size="lg"></fa-icon>
    </kendo-toolbar-button>

Also this can be concidered for the other component packages that Kendo UI for Angular offers.

Thank you for the concideration.

 

 

Declined
Last Updated: 15 Sep 2026 07:55 by ADMIN

Provide an item template directive for the ToolBarSplitButton and the ToolBarDropDownButton that allows the customization of their items, similar to the ones available for the default SplitButton and DropDownButton components:  

Currently, the only way to use this item template is by implementing the default buttons as custom tools in the Toolbar.

Declined
Last Updated: 11 Aug 2022 08:28 by ADMIN
Created by: Marc
Comments: 2
Category: ToolBar
Type: Feature Request
0

Please could you add the possibilty to add tools via API to the toolbar.

Something like it's done at the splittbutton.