I have a component <row/> containing multiple <cell/> components.
Some of the cells have ng-hide attr and some cells have a keyword 'mutate' :
<row>
<cell> </cell>
<cell ng-hide = "cond"> </cell>
<cell mutate> </cell>
</row>
Using $element.find("cell"), I'm able to get the count of all <cell/> within a <row/>. But, I want to find the the number of cells with "mutate" attr or number of cells with "ng-hide" attr. Finding either will do.
Can someone please help me out here?