Skip to content

Instantly share code, notes, and snippets.

@jsanta
Created March 9, 2018 15:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jsanta/f6cf68d19bd2f537bdc30bd09c338da7 to your computer and use it in GitHub Desktop.
Save jsanta/f6cf68d19bd2f537bdc30bd09c338da7 to your computer and use it in GitHub Desktop.
DataGridComponent template
<div class="row mt-3">
<div class="col-2 p-1 text-center align-self-center"
[ngClass]="{
'bg-info': item.color === 'blue',
'bg-success': item.color === 'green',
'bg-warning': item.color === 'yellow',
'bg-danger': item.color === 'red'
}"
*ngFor="let item of filteredData">
<strong>{{item.company}}</strong><br>
{{item.country}}
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment