Hello,
I need a little help with the code below. It works fine but I would like to add to it.
Right now it Displays: search results for Bridal Houston, Texas
I would like for it to display: Search results for Bridal in Houston, Texas
How do I add " in" into my code?
Thanks for your time and help in advance
$w("#categoryheadlineText").text = "Search result for: " + $w("#eventcategoryDropdown").value + ('#locationDropdown').value;
let searchPhrase = $w("#eventcategoryDropdown").value + $w('#locationDropdown').value;
}
Can I also add the filter results count text to the code? This result show the total after the dropdown has been filtered. Right now I have it calculating under the search for results text.
console.log("Dataset2 is now filtered");
let numberOfResults = $w("#Membersdataset").getTotalCount()
$w('#searchCount').text = String(numberOfResults);
console.log(numberOfResults);