Custom order using orderBy in ng-repeat

24,549

Solution 1

Hi you can create custom sort filter please see here http://jsbin.com/lizesuli/1/edit

html:

  <p ng-repeat="s in students |customSorter:'class'">{{s.name}} - {{s.class}} </p>
      </div>

angularjs filter:

app.filter('customSorter', function() {

  function CustomOrder(item) {
    switch(item) {
      case 'A_Class':
        return 2;

      case 'B_Class':
        return 1;

      case 'C_Class':
        return 3;
    }  
  }

  return function(items, field) {
    var filtered = [];
    angular.forEach(items, function(item) {
      filtered.push(item);
    });
    filtered.sort(function (a, b) {    
      return (CustomOrder(a.class) > CustomOrder(b.class) ? 1 : -1);
    });
    return filtered;
  };
});

Solution 2

Know this is old but may come in handy for others...

You could also create a simple custom sort function. "Not quite a filter":

$scope.customOrder = function (item) {
        switch (item) {
            case 'A_Class':
                return 2;

            case 'B_Class':
                return 1;

            case 'C_Class':
                return 3;
        }
    };

And then use like you wanted to:

<table>
<tr ng-repeat="student in students | orderBy:customOrder">
...
</tr>

Share:
24,549

Related videos on Youtube

Kimchi Man
Author by

Kimchi Man

Updated on January 24, 2020

Comments

  • Kimchi Man
    Kimchi Man over 4 years

    I have objects like this:

    students = {name: 'Aa_Student', class: 'A_Class'},
               {name: 'Ab_Student', class: 'A_Class'},
               {name: 'Ac_Student', class: 'B_Class'},
               {name: 'Ba_Student', class: 'B_Class'},
               {name: 'Bb_Student', class: 'C_Class'},
               {name: 'Bc_Student', class: 'C_Class'}
    

    Let's say the students object is shuffled. I use ng-repeat to show the data. I want to sort the objects in the custom order.

    For example, I want to show the data like this:

      Name              Class
    -----------------------------
    Ac_Student         B_Class
    Ba_Student         B_Class
    Aa_Student         A_Class
    Ab_Student         A_Class
    Bb_Student         C_Class
    Bc_Student         C_Class
    

    So basically, I want to order by student's class, but it B_Class comes first, then A_Class, then C_Class. Also, I want to order by students name in alphabetic order. How can I do this?

    HTML:

    <table>
        <tr ng-repeat="student in students | orderBy:customOrder">
        ...
        </tr>
    </table>
    

    Controller:

    $scope.customOrder = function(student) {
        $scope.students = $filter('orderBy')(student, function() {
    
        });
    };
    
    • dhavalcengg
      dhavalcengg
      There are two ways to do this (1) Custom filter (2) Short your data at controller level
    • Fritz
      Fritz
      Watch out for the typo in $scope.studens (missing a t)