I have the following angularjs ng-repeat ,column status have three values (Phoned,Active,Waiting)
<tr ng-repeat="person in persons">
<td>{{person.id}}</td>
<td>{{person.status}}</td>
</tr>
I need to apply bootstrap class depending on the value of status,like the following image
You need to use
ng-class
directiveMarkup
CSS