Top "Angularjs-filter" questions

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

Angular JS, filter table with a select box

I have a table. I want to filter the table depending on which value is choosen in an select box. …

angularjs angularjs-ng-repeat angularjs-filter
AngularJs - Use custom filter inside directive controller

Scenario I have an array of users containing information about them, I do an ng-repeat combined with a custom directive …

javascript angularjs angularjs-filter
AngularJS strict filter on only one field

I have a form with multiple filters but for some, I need a strict comparison. tl;dr: strict comparison for …

angularjs angularjs-ng-repeat angularjs-filter
Why AngularJS currency filter formats negative numbers with parenthesis?

Live Demo Why this: # Controller $scope.price = -10; # View {{ price | currency }} results in ($10.00) rather than -$10.00?

angularjs angularjs-filter
AngularJs How to filter ngRepeat with another array elements

Is there any option to filter from $scope.items where the ID exist in the array $scope.myitems ? ng-repeat="item …

javascript angularjs angularjs-ng-repeat ng-repeat angularjs-filter
Filter ng-repeat based on search input

I have the following html: <div> <div> <input type="text" placeholder="Search" ng-model="userSearch.firstname"&…

angularjs angularjs-ng-repeat angularjs-filter
Conditionally apply filters with ng-repeat

I have an object that contains a mixture of numbers and text for values. I'd like to apply the numbers …

javascript html angularjs angularjs-ng-repeat angularjs-filter
Ignore Time Zone Angularjs

Is there a better way to ignore an timezone in Angularjs: "2014-01-18 14:30:00" Instead Of "2014-01-18 15:30:00" function Scoper($scope) { $…

angularjs angularjs-filter
AngularJS custom filter for text/number

I'm attempting to write my first custom filter for AngularJS. I want the ability to identify if something is either …

angularjs filter angularjs-filter
Dynamic filter within ng-repeat in AngularJS

For my AngularJS app I have an ng-repeat in an ng-repeat like so: Html: <div ng-app="myApp"> <…

angularjs angularjs-ng-repeat angularjs-filter