Top "Angularjs-filter" questions

Selects a subset of items from array and returns it as a new array.

Set an AngularJS date filter format to be used by all references to the date filter?

Rather that having to define a custom format for each call to the date filter, is there a way to …

angularjs angularjs-filter
Angularjs groupBy + orderBy

I am using groupBy from angular-filter to group an array of objects by their date property. <div ng-repeat="(day, …

javascript angularjs angularjs-filter
filter data using dropdown?

I have an array of objects which are just items. I also have a dropdown which I would like to …

angularjs angularjs-ng-repeat angularjs-filter
Convert birthday to age in angularjs

I want to display age of all my users to grid. I am reading data from facebook.I am not …

angularjs angularjs-filter
Number filter filters number down to two decimals, but does not display it that way

This is what I see: The value is set at 160.90, but displays as 160.8999999999 etc. <input class="form-control" ng-model="imprint.…

angularjs angularjs-filter
AngularJS - ngOptions: How to order by Group Name and then by Label

Let's assume I have the following data array in this form: var data = [{group:GroupA, label: BB}, {group:GroupB, label: …

javascript angularjs angularjs-filter ng-options angularjs-orderby
AngularJS 'ng-filter' is very slow on array of ~1000 elements

I have a simple <input> search filter set up for a list of itemnames in AngularJS. My list …

angularjs angularjs-ng-repeat angularjs-filter
AngularJs, filter case insensitive

I've got an json full of datas with lowcase and upcase. For example : [ { "firstName":"JoHn" , "lastName":"DoE" }, { "firstName":"aNnA" , "lastName":"…

javascript json angularjs filter angularjs-filter
How to sort array in ng-options by key?

There is such array: month: Array[13]0: "M"1: "January"2: "February"3: "March"4: "April"5: "May"6: "June"7: "July"8: "August"9: "September"10: "October"11: "November"12: "December" I …

javascript angularjs select angularjs-filter angularjs-ng-options
$filter is not a function AngularJS

app.controller('myController', ['$scope', '$http', '$filter', function($scope, $http, $filter) { The above is an example of my …

javascript angularjs angularjs-scope angularjs-filter angularjs-http