I have a simple boolean property valid in my object document and need to bind it to radio-inputs.
valid
document
This is what i have so far:
In the new forms module this might do what you want
<input type="radio" name="food" [(ngModel)]="document.valid" [value]="true"> <input type="radio" name="food" [(ngModel)]="document.valid" [value]="false">
see also design doc for the new forms module