AngularJS orderby with empty field
I am ordering a my data and its working all correcty except some fields
are empty or have no value. When ordered these empty field come up first.
For example when ordering numbers we would get a huge empty list before
getting the "0"-values.
I am doing it like thise:
ng-click="predicate = 'name'; reverse=!reverse"
and
ng-repeat="name in names | orderBy:predicate:reverse"
JSFiddle: http://jsfiddle.net/joshdmiller/HB7LU/
Is there an easy elegant way to fix this? I want the empty fields to come
last, no matter what.
No comments:
Post a Comment