Hi!
I have a display gallery with the following Items property:
With({_items:AddColumns('PSMC Cover Pods',"dname",Name.DisplayName)},
SortByColumns(
Filter(_items,Len(TextInput2.Text)=0 ||
TextInput2.Text in dname
),"dname", SortOrder.Ascending))
I have a button with Reset(Gallery1). However when I reset the Gallery it goes back and selects the first record.
To solve this, I put {} in the Gallery Default Property. Now it no longer selects the first record when I navigate to the Gallery. However, it also doesn't reset the Gallery any more!
How can I solve this?