angular-filter
angular-filter copied to clipboard
Bunch of useful filters for AngularJS (with no external dependencies!)
Self-explanatory. But instead of the default left and right pad filters, there's a center pad.
Hi, is it possible to apply filterBy with multiple values eg: ng-repeat="s.value as s.text for s in statuses | filterBy: ['value']: 2,3,4" Thank you!
``` $scope.players = [ {name: 'Gene', team: 'alpha'}, {name: 'George', team: 'beta'}, {name: 'Steve', team: 'gamma'}, {name: 'Paula', team: 'beta'}, {name: 'Scruath', team: 'gamma'} ]; groupBy: 'team' ``` I know...
Hello I'm trying to use the `range` pipe with some controller variables like this: ``` {{time.hour}} {{time.minutes}} ``` The problem is this statement is giving me a infinite digest cycle....
How about to having a filter to convert number-like-string to digits? Angular supports "number" filter to format numbers with fraction. Maybe it is good to have a filter for opposite...
Hi, I am trying to use es2015 to import angular-filter. I have it working from other modules but I get an error on this saying ``` Failed to instantiate module...
Hi, I could not find the standard package anywhere - would like to use it with ASP.NET. Could you please release? https://www.nuget.org/packages?q=angular-filter Thanks!
Thoughts on allowing something like this in the future? `import { groupBy } from 'angular-filter'`
Hello, I have JSON data that includes multi-word parameters. When I try the unique filter in my ng-repeat I get the error that the second word in the parameter is...
I would like to be able to groupBy and then create sub groups within the groups.