i tried to make custom filter in angularjs with dropdown, but it not work. this is my code. i want to pass this value from this select
<select class="form-control" ng-model="custom" >
<option value="asd">test123</option>
into this filter
<tr ng-repeat="item in searched = (coba | filter:{{{custom}}:search}) | coba:(currentPage-1)*itemsPerPage | limitTo: viewby">
thank you