summaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/components/ui/form-components/radio-buttons/radio-buttons.component.html
blob: 6c927301db489a433355d9682ef86641881adec1 (plain)
1
2
3
4
5
6
7
8
<div class="radio-buttons-container {{direction}}">
    <div *ngFor="let option of options" class="radio-button" [ngClass]="{'disabled':readonly}">
        <input type="radio" [(ngModel)]="value"  name="{{fieldName}}" value="{{option.value}}" [disabled]="readonly"/>
        <div class="shown-radio-button" (click)="!readonly && select(option.value)"><div *ngIf="value==option.value" class="selected"></div></div>
        <span>{{option.key}}</span>
    </div>
</div>