My goal is to retrieve a value from a mat-checkbox, but the issue is that we only get boolean expression instead of the string value. Here's an example snippet of what I'm looking for:
<mat-checkbox formControlName="cb2" <strong>value="success"</strong> id="cb2" name="cb2" (change)="updateCheckBox()">CB2
We specifically require the value 'success'
I'm currently working with angular 10.0.5 on Windows 10.
Warm regards.