I want to applay css class on that row where MaxStockLevel Is greter than Balence i had try this code
<tbody ng-repeat="i in products | filter:productFilter">
<!--<tr ng-class="{{i.MaxStockLevel > i.Balence ? 'danger' : 'danger'}} ">-->
<tr class="ng-class : i.maxstocklevel > i.Balence">
<td>{{i.Name}}</td>
<td>{{i.MinStockLevel}}</td>
<td>{{i.MaxStockLevel}}</td>
<td>{{i.Balence}}</td>
</tr>
</tbody>