Hello
I am building a tablet app with source data from a sharepoint list, with a gallery that should be filtered by text search and radio button selection.
I have inserted a single text input "searchTextBox"
I have inserted a single radio control "radType",
Choices(register.Type)
where Type a column in the SP list
I have a single gallery connected to the sharepoint list filtered by text search and radio button selection
Filter('register';StartsWith(Title;searchTextBox.Text)
&& (Type.Value = radioType.Selected.Value || radioType.Selected.Value =Blank()))
I have an Icon to clear the filters
Reset(searchTextBox);;Reset(radType)
If I play the app the text and radio button filters work as expected.
However as soon as I reset the filters the gallery goes blank. I have to then close the browser and restart the powerapps interface to see gallery data again.
The problem is with the radio buttons: If I remove the radio buttons entirely and only filter the gallery with the textBox text and then reset the text box the gallery shows all items again.
Can anyone please help me to resolve this very frustrating problem
edit: I have been following this tutorial https://www.youtube.com/watch?v=bujH2gzTduQ from @RezaDorrani