<div>
<mat-form-field *>
<input matInput #filterBox (keyup)="searchBox(filterBox.value)" disabled />
<mat-label>Filter</mat-label>
</mat-form-field>
</div>
<mat-button-toggle-group
matTooltip="TESTING "
#toggleButtons="matButtonToggleGroup"
(click)="filterBox(toggleButtons.value)"
multiple
>
<mat-button-toggle value="TEST1">TEST1</mat-button-toggle>
<mat-button-toggle value="TEST2">TEST2</mat-button-toggle
>
</mat-button-toggle-group>
If a button from the button-toggle-group is clicked, I want the input to be disabled. Additionally, if the input is disabled, I want to see a tooltip. Any suggestions?