I have 5 buttons occupying 5 columns of a mat-grid
. The buttons should behave as toggle buttons and all 5 should belong to a single group.
I tried enclosing the mat-grid
with mat-button-toggle-group
, but still isn't working.
Any help is much appreciated.
Code :
<mat-grid-list cols="11" rowHeight="40px">
<mat-grid-tile >
<label>Label 1</label><!-- below buttons should be a single group -->
</mat-grid-tile>
<mat-grid-tile colspan='2'>
<mat-button-toggle >Button 1</mat-button-toggle>
</mat-grid-tile>
....
<mat-grid-tile colspan='2'>
<mat-button-toggle >Button 5</mat-button-toggle>
</mat-gri-tile>
The DOM structure of the grid is getting in the way of the toggle group. You can get around that by adding the group as a standalone element, and assigning the group to each button in your controller. For example:
A stackblitz example is here.