Created
October 19, 2018 08:57
-
-
Save Ikhiloya/7b1214239bf5d58a93314da4d4f2a53a to your computer and use it in GitHub Desktop.
If Else in a html table (Angular)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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