I got this code:
ng-class="{selectedHeader: key == selectedCol}"
It works but I would like too add the 'key' value as a class too, Ive tried:
ng-class="[{selectedHeader: key == selectedCol}, key]"
But that wont work, does anyone know how to solve this?