I am using SyncFusion.Blazor 18.1.0.45
I want to add a button to clear all applied filters and I only want the button to display when filters are currently applied.
I tried setting a bool to true when I call Grid.FilterByColumn() and back to false when I call Grid.ClearFiltering() but is seems like once the initial button is displayed when the component loads, I cannot get it hide/show it by toggling the bool.
I also tried changing the class value of a wrapping div to where it is either class="visible" or class="invisible" depending upon whether i called the Grid.FilterByColumn() or Grid.ClearFiltering(). This had the same issue in that it had no impact after the initial display.
I am wondering if there is already a Grid property I can check to see if any filters have been applied and/or is there a built in way to clear all filters?