Is there any possibility to add CSS class "marked-row" to the TR-element in case if candidate.bl = TRUE ?
<tbody>
<tr data-ng-repeat="candidate in candidates | orderBy : orderByField : reverseSort">
<td>{{candidate.fullname}}</td>
<td>{{candidate.birthdate}}</td>
<td><span ng-show="candidate.bl" class="glyphicon glyphicon-ok"></span></td>
</tr>
</tbody>