Reputation: 1129
Am using orderBy to sort my objects by their startdate.
<ion-list>
<ion-item ng-repeat="e in events | orderBy: e.startdate">
<h4>{{e.name}}</h4>
<h4>{{e.startdate}}</h4>
</ion-item>
</ion-list>
But it doen't work , how can i fix it please
Upvotes: 1
Views: 42
Reputation: 5473
<ion-item ng-repeat="e in events | orderBy: startdate">
Because each ng-repeat has its own scope and you are already in the scope of e when orderBy evaluates.
Upvotes: 2
Reputation: 1443
By this:
<ion-list>
<ion-item ng-repeat="e in events | orderBy: 'startdate'">
<h4>{{e.name}}</h4>
<h4>{{e.startdate}}</h4>
</ion-item>
</ion-list>
Upvotes: 3