Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Lets say you have an array that is rendered in a ul with an li for each element and a property on the controller called selectedIndex. What would be the best way to add a class to the li with the index selectedIndex?

I am currently duplicating (by hand) the li code and adding the class to one of the li tags and using ng:show and ng:hide to show only one li per index.

share|improve this question

11 Answers

up vote 144 down vote accepted

If you don't want to put css class names into Controller like I do, here is an old trick that I use since pre-v1 days. We can write an expression that evaluates directly to a class name selected, no custom directives are necessary:

ng:class="{true:'selected', false:''}[$index==selectedIndex]"

There is also a new better way of applying classes conditionally, like:

ng-class="{selected: $index==selectedIndex}"

Angular now supports expressions that returns an object. Each property (name) of this object is now considered as a class name and is applied depending on its value.

However these ways are not functionally equal. Here is an example:

ng-class="{admin:'enabled', moderator:'disabled', '':'hidden'}[user.role]"

We could therefore reuse existing css classes by basically mapping a model property to a class name and at the same time kept css classes out of Controller code.

share|improve this answer
2  
OP, that may be the worse way to express the ternary operator I've ever seen. Have you considered ($index==selectedIndex) ? 'selected' : '' ? – Malvolio May 7 '12 at 22:07
3  
@Malvolio AFAIR, ternary operator was not working within angular expressions in v0.9.x . This is more or less a switch. – orca May 8 '12 at 9:25
7  
ng-class (as of 1/19/2012) now supports an expression that must evaluate to either 1) a string of space-delimited class names, or 2) and array of class names, or 3) a map/object of class names to boolean values. So, using 3): ng-class="{selected: $index==selectedIndex}" – Mark Rajcok Aug 28 '12 at 1:11
2  
Thanks @Mark, BTW now that I have checked I can say that this method is working in v1. It still useful in some cases. Note that object property names(keys) are not necessarily true or false, it can be anything that you might wanna map to a class name. – orca Aug 29 '12 at 18:49
2  
I just want to add, I was having an issue because I was using syntax like {classname: '$index === selectedIndex'} and it wasn't working. When I pushed everything together and used == instead of === it worked. {classname: '$index==selectedIndex'} – Lucas Feb 13 at 23:16
show 10 more comments

ng-class (as of 1/19/2012) now supports an expression that must evaluate to either

  1. a string of space-delimited class names, or
  2. an array of class names, or
  3. a map/object of class names to boolean values.

So, using form 3) we can now simply write

ng-class="{selected: $index==selectedIndex}"

See also How do I conditionally apply CSS styles in AngularJS? for a broader answer.

share|improve this answer
3  
Best way to do it as far as I am concerned – Ranjith R Aug 28 '12 at 11:52

Here is a much simpler solution:

http://jsfiddle.net/rur_d/tNZAm/

share|improve this answer
2  
yes, this is the angular zen way. – Misko Hevery Oct 17 '11 at 15:52
2  
I don't like putting my class names in the controller but this is much simpler. – respectTheCode Oct 19 '11 at 9:28
11  
I'd highly recommend to keep your controller clear of CSS stuff. That's a path you don't want to head down. – leviathan Jul 9 '12 at 6:59
Class names belong in the template – Casey Jan 29 at 9:07

I'll add to this, because some of these answers seem out of date. Here's how I do it:

<class="ng-class:isSelected">

Where 'isSelected' is a javascript variable defined within the scoped angular controller.


To more specifically address your question, here's how you might generate a list with that:

HTML

<div ng-controller="ListCtrl">  
    <li class="ng-class:item.isSelected" ng-repeat="item in list">   
       {{item.name}}
    </li>  
</div>


JS

function ListCtrl($scope) {    
    $scope.list = [  
        {"name": "Item 1", "isSelected": "active"},  
        {"name": "Item 2", "isSelected": ""}
    ]
}


See: http://jsfiddle.net/tTfWM/

See: http://docs.angularjs.org/api/ng.directive:ngClass

share|improve this answer

I faced a similar problem recently and decided to just create a conditional filter:

  angular.module('myFilters', []).
    /**
     * "if" filter
     * Simple filter useful for conditionally applying CSS classes and decouple
     * view from controller 
     */
    filter('if', function() {
      return function(input, value) {
        if (typeof(input) === 'string') {
          input = [input, ''];
        }
        return value? input[0] : input[1];
      };
    });

It takes a single argument, which is either a 2-element array or a string, which gets turned into an array that is appended an empty string as the second element:

<li ng-repeat="item in products | filter:search | orderBy:orderProp |
  page:pageNum:pageLength" ng-class="'opened'|if:isOpen(item)">
  ...
</li>
share|improve this answer
1  
me to I just created for exemple a yesNo() filter returning classes 'yes' or 'no' according to a boolean value 1 o 0 : filter('yesNo', function() { return function(input) { // info('yesNo('+ input +')'); switch(input){ case '1': return ' yes '; break; default: return ' no '; break; } } }); – svassr Aug 1 '12 at 20:11
ng-class can handle a map/object of class names to boolean values, so you could simply write the following: ng-class="{yes: some_boolean_expression, no: some_other_boolean_expression}" E.g., ng-class="{yes: input, no: !input}" – Mark Rajcok Aug 28 '12 at 1:21

If you want to go beyond binary evaluation and keep your CSS out of your controller you can implement a simple filter that evaluates the input against a map object:

angular.module('myApp.filters, [])
  .filter('switch', function () { 
      return function (input, map) {
          return map[input] || '';
      }; 
  });

This allows you to write your markup like this:

<div ng-class="muppets.star|switch:{'Kermit':'green', 'Miss Piggy': 'pink', 'Animal': 'loud'}">
    ...
</div>
share|improve this answer

How about this: http://jsfiddle.net/3N5y9/2/?

It keeps the css class in the template but is quite readable and concise.

share|improve this answer

So I decided to create a custom directive to accomplish this. It requires jQuery and uses the expression syntax "(expression) ? className".

angular.directive("my:class", function (expression, compiledElement) {
    var className = expression.substring(expression.indexOf(") ? ") + 4);
    expression = expression.substring(expression.indexOf("(") + 1, expression.indexOf(")"));

    return function (element) {
        this.$watch(expression, function (value) {
            if (value) $(element).addClass(className);
            else $(element).removeClass(className);
        });
    }
});
share|improve this answer

Here is another option that works well when ng-class can't be used (for example when styling SVG):

ng-attr-class="{{someBoolean && 'class-when-true' || 'class-when-false' }}"

(I think you need to be on latest unstable Angular to use ng-attr-, I'm currently on 1.1.4)

share|improve this answer

Ternary operator has just been added to angular parser in 1.1.5.

So the simplest way to do this is now :

ng:class="($index==selectedIndex)? 'selected' : ''"
share|improve this answer
This is great. Can't wait for the 1.2 release. – respectTheCode 9 hours ago

Check http://www.codinginsight.com/angularjs-if-else-statement/

The infamous angularjs if else statement!!! When I started using Angularjs, I was a bit surprised that I couldn’t find an if/else statement.

So I was working on a project and I noticed that when using the if/else statement, the condition shows while loading. You can use ng-cloak to fix this.

<div class="ng-cloak">
 <p ng-show="statement">Show this line</span>
 <p ng-hide="statement">Show this line instead</span>
</div>

.ng-cloak { display: none }

Thanks amadou

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.