I want to use a filter expression like values | filter:value1
to hide or show a div, where values
and value
are both declared on the s
May be because of using filter
inside ng-show
, filter gets executed in every digest cycle, and keeps checking your value is changed or not, if value is changed then it evaluates again and gives new result, otherwise it doesn't do anything (becaues angularJs uses "dirty-checking" method to find any change)
http://jsbin.com/nujineci/4/edit
check this link, i have modified
ng-show="g.values | filter:g.value1"
To
ng-show="g.values.indexOf(g.value1) != -1"
or ng-show="g.values.indexOf(g.value1) > -1"
// this is same as above
indexOf returns index of item if exists in array, otherwise returns -1
I use this type of syntax, never had any problem with this