Guest User

Untitled

a guest
Oct 16th, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. <form class="form" [formGroup]="filterForm">
  2. <fieldset class="form__options">
  3. <legend class="form__question">Channel</legend>
  4. <p class="form__answer" *ngFor="let item of options; let i=index;">
  5. <input type="radio" id="ct{{item.key}}" value="{{item.key}}" formControlName="channel" hidden>
  6. <label for="" tappable (click)="onChecked('channel', item.key)">
  7. <title>{{item.name}}</title>
  8. {{item.name}}
  9. </label>
  10. </p>
  11. </fieldset>
  12. </form>
Add Comment
Please, Sign In to add comment