ngClassOdd

  1. directive in module ng

The ngClassOdd and ngClassEven directives work exactly as ngClass, except they work in conjunction with ngRepeat and take effect only on odd (even) rows.

This directive can be applied only within the scope of an ngRepeat.

Directive Info

  • This directive executes at priority level 0.

Usage

  • as attribute:
    <ANY
      ng-class-odd="expression">
    ...
    </ANY>
  • as CSS class:
    <ANY class="ng-class-odd: expression;"> ... </ANY>

Arguments

Param Type Details
ngClassOdd expression

Expression to eval. The result of the evaluation can be a string representing space delimited class names or an array.

doc_AngularJS
2016-03-29 16:11:42
Comments
Leave a Comment

Please login to continue.