Hi! I have a Canvas Power App with a Gallery in. The gallery is scrollable and I have 2 fields which control the filters.
I want the gallery to reset and scroll to the top and then filters to reset when I leave and then come back to the screen
On the Screen's OnVisible property, I tried:
Reset(Gallery2);
Reset(Dropdown1);
Reset(TextInput3);
I tested this when the filters were blank and the gallery was scrolled down and it worked. But when I tested it by applying the filters and then returned to the screen, the gallery was scrolled to the bottom.
I then tried to apply {} to the Default Property in the Gallery. Now I have the opposite problem. When the filters were blank and the gallery was scrolled down, the gallery remains scrolled down when I return to the screen. But when I tested it by applying the filters and then returned to the screen, the gallery was scrolled to the top and the filters reset.
For good measure I have also put the below on the OnSelect Property on the Home icon with no success
Navigate(Home); Reset(Gallery2);
Reset(Dropdown1);
Reset(TextInput3);
Can anyone help me?