I would like to know if I'm dealing with a bug, or if I am not implementing things correctly.
First off, this App is connected to an Azure SQL database. And all tables have a Primary Key.
In the attached images, I have a Navigation Gallery along the top in green (not the issue). I have a Search Gallery on the left with a text input search box above it. And then, I have an Edit Form to the right of the Search Gallery. The DataSource for both the Search Gallery and Edit Form is the same Member table. The Item property of the Edit Form is set to the Search Gallery's Selected property.
The Search Gallery has its Items property set to Filter('[dbo].[Member]', StartsWith(Pnum, SearchMembers.Text) || StartsWith(LastName, SearchMembers.Text)). So, one can search based on LastName or Pnum. The searching/filtering of a Member in this Search Gallery (approx 5,000 entries) works consistently fine.
The problem is that some of the time, the item in the top of the list gets selected (Good- See image Gallery Select Problem 3.jpg) , and sometime nothing in the list gets selected (Bad- See image Gallery Select Problem 2.jpg).
Can someone please enlighten me?
Thanks,
Steve