Declined
Last Updated: 18 Nov 2025 08:49 by ADMIN
Created by: Kendo UI
Comments: 1
Category: ButtonGroup
Type: Feature Request
1

Allow defining buttons in ButtonGroup component using NgTemplateOutlet:

  <kendo-buttongroup>
    <ng-container *ngTemplateOutlet="buttonsList"></ng-container>
  </kendo-buttongroup>

  <ng-template #buttonsList>
    <button kendoButton size="small">Button 1</button>
    <button kendoButton size="small">Button 2</button>
    <button kendoButton size="small">Button 3</button>
  </ng-template>

 

So far, the ButtonGroup doesn't appear when using this markup.

Declined
Last Updated: 23 Feb 2023 06:22 by ADMIN
Created by: Kristiyan
Comments: 3
Category: ButtonGroup
Type: Feature Request
0

Hello Telerik Team,

I would like to propose a feature request: currently, the <kendo-buttongroup> is not keeping track of toggled button/s, so it would be a good idea to implement this. My solution right now is 

<kendo-buttongroup class="view-mode-group"
    selection="single"
look="flat">
<button class="group-button"
kendoButton
(click)="onChangeViewMode(0)"
[toggleable]="true"
[selected]="isModeSelected$(0) | async">Imported Messages
</button>

Declined
Last Updated: 27 Jul 2021 13:36 by ADMIN
Created by: Andreas
Comments: 2
Category: ButtonGroup
Type: Feature Request
5
Support for ButtonGroup in reactive forms to select a sinlge value. It would be great if it would work with typescript enums.