mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-12 19:41:38 +00:00
13 lines
452 B
HTML
13 lines
452 B
HTML
<p>
|
|
<mat-checkbox [formControl]="disableSelect">Disable select</mat-checkbox>
|
|
</p>
|
|
<p>
|
|
<mat-form-field>
|
|
<mat-select placeholder="Choose an option" [disabled]="disableSelect.value">
|
|
<mat-option value="option1">Option 1</mat-option>
|
|
<mat-option value="option2" disabled>Option 2 (disabled)</mat-option>
|
|
<mat-option value="option3">Option 3</mat-option>
|
|
</mat-select>
|
|
</mat-form-field>
|
|
</p>
|