Ask Your Question
3

What is the method to remove filters set by 'filterBy'?

asked 2023-07-17 19:31:53 +0000

david gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2023-07-17 19:56:02 +0000

bukephalos gravatar image

To remove filters set by 'filterBy,' we can simply set the filter criteria to an empty string or null value. For example:

this.filteredItems = this.items.filterBy('category', ''); // Removes the filter set for 'category'

Alternatively, we can also use the 'removeFilter' method provided by the Ember addon 'ember-composable-helpers' to remove a specific filter criteria. For example:

import { removeFilter } from 'ember-composable-helpers';

this.filteredItems = removeFilter(this.items, 'category'); // Removes the filter set for 'category'

Additionally, we can also use the 'clearFilters' method provided by the same addon to remove all filters set on the items array. For example:

import { clearFilters } from 'ember-composable-helpers';

this.filteredItems = clearFilters(this.items); // Removes all filters set on items array
edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-07-17 19:31:53 +0000

Seen: 21 times

Last updated: Jul 17 '23