1

I have html code includin dropdown which I have used filter.

<div class="controls">
    <label class="control-label" for="teamRole">Select Rater: </label>
    <select name="selectReviewForm" data-ng-model="firstName" data-ng-options="getDisplayName(rf) for rf in users |filter: 'Associates' ">
    <option value="">-please select-</option>
    </select>
</div>

Here I want to use multiple filters, can any one guide me how can I use it ?

1 Answer 1

3

You can chain your filters with the | character as you would typically do in a Linux shell :

{{ value | number: 42 | currency: '$' }}

In the case of filter chaining, each filter will receive on its input the output of the previous filter.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.