Object is
StudentObj = {name : 'Me', Place : 'Bangalore',uniqueId :'233abc233' }
Html template
<ul>
<li ng-repeat:'entry in StudentObj |filter:sText' >
<span>{{entry.name}}</span>
<span ng-bind='entry.place'></span>
</li>
</ul>
And search filter is
<input type='text' ng-model='sText'>
Problem :
if i search '233abc233' in text-filter the row is selecting , But this should not selected.
Only on name and place values , the Row should be selected"
Thanks in Advance