Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Given a filter method that returns true if some condition is met, is it possible to invoke its opposite in HTML, e.g. to use:

"item in items | filter:!AllDay"

instead of

"item in items | filter:AllDay"

? Or do you have to maintain two separate filter methods (one for false and one for true)?

share|improve this question
1  
Thanks Mark - yep, the answer is there. – shacker Nov 20 '12 at 18:16

1 Answer

up vote 3 down vote accepted

As noted by ENDOH (this SO question is technically a duplicate), you can negate a filter by prepending '!' to the filter string, like this:

filter:'!'+myFilter

Note that the '!' is quoted. The documentation is not terribly clear on this, and an example there would be helpful.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.