I’m hoping to control some filters remotely. On the following page, I have a dropdown (select Location) filtering a list.
I’d like to also control the filters using the buttons on these page. For various reasons these buttons can’t be form field elements inside the structure of the form, so I’d like to trigger a filter change programmatically when a button is clicked.
Previously I’d tried methods like changing the Select Element Option field with js but this doesn’t seem to trigger a filter change.
I’m also pretty sure that putting the buttons inside a separate form element doesn’t work.
Can someone guide me in the right direction?
Read only link:
https://preview.webflow.com/preview/location-picker?utm_medium=preview_link&utm_source=designer&utm_content=location-picker&preview=464daa3f194e2479d01e6aebd7609eac&pageId=66e01db9846970ae5708fcf5&locale=en&workflow=preview
Hey @jon.burdon! You can look into these two Attributes to mirror any click or input value to the elements within the filter form.
This can also be done with JS, you’ll just need to dispatch an event with dispatchEvent(event)
on the target element. These events vary from element to element but normally input
and change
work for input fields/selects/etc…
Hi Luis,
I already had my own code changing the Select element when I clicked on the location button.
I also tried changing the url parameter for location on click.
Both of the above work, but neither of them seem to actually change the filter. If the url parameter or the select option is changed programmatically, should this also cause
the filtering to change?
If I were to use dispatch event with js, the target would be the select element with ID location-select.
Should changing the value always mean the filtering will update? It doesn’t seem to. Do I need to control filtering itself rather than just simply change the value?
Can you share this code or point me to it?
<script>
document.addEventListener('DOMContentLoaded', function() {
// Select all elements with the data-button-location attribute
document.querySelectorAll('[data-button-location]').forEach(function(element) {
element.addEventListener('click', function() {
// Get the value of the data-button-location attribute
const locationValue = this.getAttribute('data-button-location');
// Log the value to the console
console.log(locationValue);
// Find the select element with ID 'location-select'
const selectElement = document.getElementById('location-select');
// Find the option element within the select that matches the value
const matchingOption = Array.from(selectElement.options).find(option => option.value === locationValue);
// If the matching option is found, select it
if (matchingOption) {
selectElement.value = locationValue;
} else {
console.warn('No matching option found for value:', locationValue);
}
});
});
});
</script>
<script>
document.addEventListener('DOMContentLoaded', function() {
// Select all elements with the data-button-location attribute
document.querySelectorAll('[data-button-location]').forEach(function(element) {
element.addEventListener('click', function() {
// Get the value of the data-button-location attribute
const locationValue = this.getAttribute('data-button-location');
// Log the value to the console
console.log(locationValue);
// Find the select element with ID 'location-select'
const selectElement = document.getElementById('location-select-element');
// Find the option element within the select that matches the value
const matchingOption = Array.from(selectElement.options).find(option => option.value === locationValue);
// If the matching option is found, select it
if (matchingOption) {
selectElement.value = locationValue;
} else {
console.warn('No matching option found for value:', locationValue);
}
});
});
});
</script>
<script>
document.addEventListener('DOMContentLoaded', function() {
$("#location-select").change(function(){
// alert("The text has been changed.");
const locationselect = document.getElementById("location-select");
const targetHeading = document.querySelector('[data-target-heading="true"]');
if(locationselect.selectedIndex == 0) {
$(".activity-item").addClass("hide");
targetHeading.textContent = '';
}
else {
var selectedText = locationselect.options[locationselect.selectedIndex].text;
$(".activity-item").removeClass("hide");
console.log
const selectedOption = locationselect.options[locationselect.selectedIndex].text;
targetHeading.textContent = selectedOption;
}
});
});
</script>```
The second version I posted has a tiny change to the ID.
It should all be working on here:
https://location-picker.webflow.io/remote-control
no errors in console.
Hey @jon.burdon!
Can you test this on your end and let me know if this is what you’re looking for?
I integrated everything inside the CMS Filter callback function and have marked the section for the “remote control”
<script>
// Only do this when fsAttributes have loaded.
window.fsAttributes = window.fsAttributes || [];
window.fsAttributes.push([
'cmsfilter',
(filterInstances) => {
console.log('cmsfilter Successfully loaded!');
const [filterInstance] = filterInstances;
const { listInstance } = filterInstance;
// Remote contorl start
document.querySelectorAll('[data-button-location]').forEach((element) => {
element.addEventListener('click', () => {
const locationValue = element.getAttribute('data-button-location');
const selectElement = document.getElementById('location-select-element');
if (!selectElement) {
console.error('Select element not found.');
return;
}
selectElement.value = locationValue; // Directly set the value
// Dispatch events, both are needed to update and fire the filters
selectElement.dispatchEvent(new Event('input', { bubbles: true }));
selectElement.dispatchEvent(new Event('change', { bubbles: true }));
});
});
$('#location-select').change(function () {
// alert("The text has been changed.");
const locationselect = document.getElementById('location-select');
const targetHeading = document.querySelector('[data-target-heading="true"]');
if (locationselect.selectedIndex == 0) {
$('.activity-item').addClass('hide');
targetHeading.textContent = '';
} else {
var selectedText = locationselect.options[locationselect.selectedIndex].text;
$('.activity-item').removeClass('hide');
const selectedOption = locationselect.options[locationselect.selectedIndex].text;
targetHeading.textContent = selectedOption;
}
});
// Remote control end
document.getElementById('reset-button').addEventListener('click', function () {
console.log('Reset Filter 2');
filterInstance.resetFilters(['activity']);
});
console.log('Event Lister for Reset added.');
// Reset Filter 2 whenever filter 1 is changed.
const locationDropdown = document.getElementById('location-select');
locationDropdown.addEventListener('change', () => {
console.log('location changed');
// console.log(locationDropdown.value);
filterInstance.resetFilters(['activity']);
});
// var filtermonitor = "Filtering is available";
var filtermonitor = false;
console.log(filtermonitor);
function createEventListeners() {
console.log('Creating Event Listeners');
/**/
/* Add Event Listener to dropdowns * SHOULD be only when CMSfiltering has changed the dom */
document.querySelectorAll('[activity-dropdown-item="true"]').forEach((item) => {
item.addEventListener('click', function () {
document.getElementById('filter-results-dropdown').classList.remove('hide');
});
});
document.querySelectorAll('[data-location-item="true"]').forEach((item) => {
item.addEventListener('click', function () {
/* Reset Secondary Filter every time the first dropdown is used */
console.log('Reset Dropdown 2 please');
filterInstance.resetFilters(['activity']);
document.querySelectorAll('[activity-dropdown-item="true"]').forEach((item) => {
if (item.textContent.trim() === 'Select Activity') {
/* Click the blank 'Select Activity' item*/
//item.click();
// item.click();
//console.log(item);
/* Close the dropdown */
//document.getElementById("secondary-filter-toggle").click();
/* Hide the filter results */
//document.getElementById('filter-results-dropdown').classList.add('hide');
const dropdownToggle = document.querySelector('#secondary-filter-toggle');
//if (dropdownToggle.classList.contains('w--open')) {
if (dropdownToggle) {
// dropdownToggle.dispatchEvent(new Event('mousedown'));
setTimeout(() => {
//dropdownToggle.dispatchEvent(new Event('mousedown'));
// dropdownToggle.dispatchEvent(new Event('mouseup'));
}, 10); // A short delay ensures that events are distinguished
}
}
});
});
});
/* Hide Filters id Secondary Filter selects 'Select Activity'. If it contains 'Golf' then transform it to a dropdown */
document.querySelectorAll('[activity-dropdown-item="true"]').forEach((item) => {
item.addEventListener('click', function () {
console.log('Secondary filter clicked');
console.log(item.textContent);
if (item.textContent.trim() === 'Select Activity') {
console.log('Select Selected');
document.getElementById('filter-results-dropdown').classList.add('hide');
}
if (item.textContent.trim() === 'Golf') {
console.log('Golf Selected');
/*Change the results appearance into a Dropdown*/
transformGolf();
} else {
resetGolf();
}
});
});
}
function transformGolf() {
document.getElementById('go-button').classList.add('is-inactive');
document.getElementById('filter-results-dropdown').classList.remove('is-normalview');
document.getElementById('filter-results-toggle').classList.remove('is-normalview');
document.getElementById('filter-results-list').classList.remove('is-normalview');
document.getElementById('filter-results-dropdown').classList.remove('hide');
document.getElementById('go-button').classList.remove('hide');
}
function resetGolf() {
document.getElementById('go-button').classList.add('hide');
document.getElementById('filter-results-dropdown').classList.add('is-normalview');
document.getElementById('filter-results-toggle').classList.add('is-normalview');
document.getElementById('filter-results-list').classList.add('is-normalview');
}
function handleDropdownUpdateClick() {
//alert("Update Secondary filter items");
const secondaryfilter = document.getElementById('activity-selector');
secondaryfilter.classList.remove('is-inactive');
/*Unhide all Activity dropdowns*/
const ele_var = document.querySelectorAll('[activity-dropdown-item="true"]');
ele_var.forEach((element) => {
element.classList.remove('hide');
});
// Step 1: Get the text from the element with data-target-heading="true"
let targetHeadingElement = document.querySelector('[data-target-heading="true"]');
if (targetHeadingElement) {
let currentLocation = targetHeadingElement.innerText;
// Step 2: Make an alert with the value stored in currentLocation
/*
alert(currentLocation);
*/
// Step 3: Find an element with activity-checker="true" and check if activity-checker-name matches currentLocation. Hide elements that match.
let activityChecker = Array.from(
document.querySelectorAll('[activity-checker="true"]')
).find((element) => element.getAttribute('activity-checker-name') === currentLocation);
if (activityChecker) {
// Step 4: Inside the activity-checker element, find the element with the class 'w-dyn-items'
let dynItems = activityChecker.querySelector('.w-dyn-items');
if (dynItems) {
// Get all child elements and log the value of their activity-checker-item attribute
let items = dynItems.querySelectorAll('[activity-checker-item]');
items.forEach((item) => {
let locationSelect = document.getElementById('location-selector');
let elements = locationSelect.querySelectorAll('[activity-dropdown-item]');
// console.log(locationSelect);
// Iterate through each element
elements.forEach((element) => {
if (element.textContent.trim() === item.getAttribute('activity-checker-item')) {
// Add the class 'hide' to the element
element.classList.add('hide');
}
});
});
}
}
}
}
// Attach the click event listener to the element with ID dropdown-update
/*
document.getElementById("dropdown-update").addEventListener("click", handleDropdownUpdateClick);
*/
/* Update Dropdown when Activity Filter is activated */
// The `renderitems` event runs whenever the list renders items after switching pages.
listInstance.on('renderitems', (renderedItems) => {
document.querySelectorAll('[activity-selected="true"]').forEach((item) => {
item.addEventListener('click', function () {
// Find the sibling element with the attribute activity-inner-link-destination="true"
const sibling = item.parentElement.querySelector(
'[activity-inner-link-destination="true"]'
);
// Check if the sibling exists and contains an <a> element
if (sibling) {
const linkElement = sibling.querySelector('a');
if (linkElement) {
// Get the href value from the <a> element
const hrefValue = linkElement.getAttribute('href');
// Update the href of the button with ID go-button
const goButton = document.getElementById('go-button');
if (goButton) {
goButton.setAttribute('href', hrefValue);
goButton.classList.remove('is-inactive');
}
}
}
});
});
// Run these the first time filtering happens
// Log that filtering has happened
console.log('Filtering is');
console.log(filtermonitor);
if (filtermonitor) {
console.log("I'm not repeating myself");
} else {
createEventListeners();
}
filtermonitor = true;
console.log(filtermonitor);
//if filteringhappened {console.log("Filtering has happened")};
handleDropdownUpdateClick();
});
},
]);
</script>
You’re welcome @jon.burdon! Let me know if you need any change or tweak on it