Unplanned
Last Updated: 11 Nov 2025 12:16 by ADMIN
Kendo UI
Created on: 11 Nov 2025 12:16
Category: Kendo UI for Angular
Type: Feature Request
1
Define Buttons in ButtonGroup through NgTemplateOutlet

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.

0 comments