Is it possible to check if a filter is applied?
Or do you have to manually update a variable such as:
“PriceFilter = true”
Is it possible to check if a filter is applied?
Or do you have to manually update a variable such as:
“PriceFilter = true”
If the repeater doesn’t have multiple pages you can use a condition:
[[LVAR1.visibleItemCount]] equals [[LVAR1.dataCount]]
This means no filter is set.
good shout, though unfortunately this would only check if no filters are applied. Doesn’t seem to be a way (other than global variable use) to check if a specific filter is applied.
You could append the filter name to a Global Variable then check if Global Variable contains that text. When that filter is removed you could Replace that filter name with “”
this seems like the best solution