Reputation: 222
In the below code i want to add class to those row in which notes are more than 20.is there any way to add class according to my reqirement
<td> {{ participant.ParticipationRole }} </td>
<td> {{ participant.AvailableDate | date: "dd-MMM-yyyy" }} </td>
<td> {{ participant.Notes | limitTo: 20 }} {{participant.Notes.length < 20 ? '' : '...'}}</td>
Upvotes: 0
Views: 47
Reputation: 1818
Use ng-class :
<td ng-class="{ 'myClass': participant.Notes.length < 20 }"> Data </td>
Upvotes: 1