When a user clicks on an item in the gallery, the initial form screen gets stuck on, "Getting your data ...". Oddly this goes away if you click back to the gallery and then click on any item in the gallery again. It only happens on the first try.
Based on other posters I've tried:
1) Reduced the number of lookups back to sql server in order to reduce the amount of data its pulling
2) Switched all of the collections to load concurrently() initially in the app
Concurrent(
Collect(EmployeeData, '[dbo].[App_PAFNewProj_Emp_vps]'),
Collect(Loc, '[dbo].[App_PAFNewProj_Loc_vps]'),
Collect(Cust, '[dbo].[App_PAFNewProj_Cust_vps]')
)
3) Added, ResetForm(Form1) into the OnSelect in the Gallery
None of the above has worked.
Any other thoughts? Is there anything I could provide that would be helpful?