Filter listview by terms #2092
Description
The listview filter is a match on entire string rather than terms.
rather than filtering once on a single string per <li>
there should be an option to filter based on terms within the string (eliminating the need for full matches or exact order). This is easy enough to accomplish, but it might be best as an optional functionality due to increased overhead.
I am mostly creating this to have a ticket number for reference as I already have a solution that is enabled with data-filter-terms="true". In this case I actually ended up repeating the filtering process with each term entered rather than splitting all li's into possible terms over and over again. I am debating whether or not my feeling that this way incurs less overhead is correct, but at least it would be taking advantage of the existing methods.