Skip to content
This repository has been archived by the owner on Oct 30, 2024. It is now read-only.

Filtering dynamic list from CMS by a numeric range #592

Open
steadyy847 opened this issue Dec 15, 2021 · 0 comments
Open

Filtering dynamic list from CMS by a numeric range #592

steadyy847 opened this issue Dec 15, 2021 · 0 comments

Comments

@steadyy847
Copy link

steadyy847 commented Dec 15, 2021

Struggling to figure out a solution to filtering by numeric values of one attribute on each item in a list that is rendered dynamically from CMS? For example, I want to filter out all entities with a "cost" field that equals greater than $100.

I have seen several previous issue posts (e.g. #473), but they all seem to solve the problem by adding a custom data attribute (e.g. data-cost) to each of the targets in a static content scenario. But this seems to be a solution primarily for static content (where adding the custom attribute would be possible), yet I haven't been able to figure this out when the targets are coming from a CMS. Any help you could provide for this type of scenario?

function filterTestResult(testResult, target) {
var size = Number(target.dom.el.getAttribute('data-size')); // <<-- HOW DO I DO THIS FOR ITEM FROM CMS TARGET???
var range = getRange();
if (size < range.min || size > range.max) {
testResult = false;
}
return testResult;
}

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant