Skip to content

Instantly share code, notes, and snippets.

@Ikhiloya
Created October 19, 2018 08:57
Show Gist options
  • Save Ikhiloya/7b1214239bf5d58a93314da4d4f2a53a to your computer and use it in GitHub Desktop.
Save Ikhiloya/7b1214239bf5d58a93314da4d4f2a53a to your computer and use it in GitHub Desktop.
If Else in a html table (Angular)
<td *ngIf="(question.responseType === 'F');
else pickListResponse">Free Text</td>
<ng-template #pickListResponse>
<td>Pick List</td>
</ng-template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment