I need a year-only filter for a car archive so users can choose a min/max year to filter a date field (fecha de matriculación), but the default Toolset date picker is too granular.
Solution:
Add a “between two values” date filter using URL params (e.g., matri_from/matri_to), insert two hidden Toolset date controls bound to those params, then use visible year selects plus a small JS snippet to map years to YYYY-01-01 and YYYY-12-31, sync the hidden inputs, and trigger the View update.
I needed to add a price range filter to a Toolset View (number field: sale-price-toolset) and wanted simple ranges (e.g., $0–$2000, $2001–$4000), but couldn’t get any approach to work.
Solution:
Add a BETWEEN filter on the price field to produce FROM/TO inputs, hide those inputs, and use JavaScript to control them (e.g., a range slider) so the View receives min/max values; this approach worked after testing.