im making clear query filter method, but when im doing that. I clear all the query but radio button design still intact.
so if im clicking Paid Invoice in Radio button, then my query will be fired and my datagrid will change. but when i clear the query, Paid Invoice in radio button still in checked condition but the datagrid clear of any filter query.
how can i unchecked all radio button from method?
*this is my clear filter query method
public void ClearFilter()
{
GridQuery = new Syncfusion.Blazor.Data.Query();
}