I'm having trouble clearing my search filter without deleting the text in the search field. I want to use a button to clear the search field, but when I do, the items in the grid don't reappear.
I attempted to add a Clear button as part of the combination filter and include data-filter="*", but it didn't have the desired effect.
<div class="button-group js-radio-button-group" data-filter-group="clear">
<a class="button" id="clearme" data-filter="">Clear</a>
</div>
This is the code I am using to clear the search field:
$('#clearme').on( 'click', function() {
$(".quicksearch").val("");
})