Guest User

Untitled

a guest
Feb 23rd, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. class CohortDataSourceAssay{
  2. String name;
  3. String displayName;
  4. bool selected;
  5. List<String> platforms = new List<String>();
  6.  
  7. CohortDataSourceAssay();
  8. }
  9.  
  10. <data-source-assay *ngFor="let assay of dataSource.assays"></data-source-assay>
  11.  
  12. <div class="dataSourceAssay">
  13. <material-checkbox [(ngModel)]="assay.selected" (ngModelChange)="onCbxChange($event)">{{assay.displayName}}</material-checkbox>
  14. <material-dropdown-select class="selectStyle"
  15. [disabled]="!assay.selected"
  16. [buttonText]="platformLabel"
  17. [selection]="assaySequencingPlatforms"
  18. [options]="sequencingPlatforms"
  19. [itemRenderer]="itemRenderer">
  20. </material-dropdown-select>
  21. </div>
Add Comment
Please, Sign In to add comment