
Hello Randy,
Sorry to trouble you. I tried posting this yesterday, but didn't get any replies so I thought I would try tagging you. The app screen loads right away, but loading balls keep running at the top without stopping. I haven't seen it before with any of my apps. Have you? It might be one of those nebulous issues that is hard to troubleshoot. I'd appreciate any advice you have to offer.
Here is the original post:
This 2 screen app contains about 150 controls. The information loads in a timely way, but I have "Marching Ants" at the top of the screen that won't go away. I'm looking for advice on what to adjust. Below you will find screenshots for the 2 screens and my OnStart and StartScreen formulas. I have attached my Settings selections in a Word doc. Let me know if there is any other information I can provide that will help us get to the bottom of why the app is acting this way. Thanks! Teresa
Home Screen
Profile Screen
OnStart Formula
Concurrent(
Set(varRefID, IfError(Value(Param("RefID")), 0));
Set(varRecord, LookUp('CSO Staff List', ID = varRefID)),
Set(
varUser,
User()
),
Set(
isAdmin,
CountRows('People App Admins') > 0
),
Set(
varColors,
{
TealDark: RGBA(
0,
98,
129,
1
),
TealBright: RGBA(
28,
181,
216,
1
),
TealLight: RGBA(
64,
205,
227,
.5
),
GrayCharcoal: RGBA(
62,
67,
74,
1
),
GrayMedium: RGBA(
215,
215,
215,
1
),
GrayLight: RGBA(
245,
245,
245,
1
)
}
),
Set(
varStatus,
[
"Active",
"On Leave",
"Term",
"Onboarding",
"Offboarding",
"Transitioning"
]
);
Set(varSortColumn, "PreferredName");
Set(varSortDirection, Ascending);
Set(
varPlaySpinner,
false
);
Set(
varClearFilters,
true
);
Set(varCurrentDate, Date(Year(Today()), Month(Today()), 1)))
StartScreen Formula
If(!IsBlank(Param("RefID")) && Param("DeepLink")="ProfileScreen", 'Associate Profile Screen',
'CSO Staff Member Screen')