Hi @Anonymous ,
Do you want to display a Pre-load icon after you submit form data?
Based on the needs that you mentioned, I think the Timer control could achieve your needs. Please take a try with the following workaround:
Add a Timer control within the Edit screen of your app, set the Duration property to following:
2000
Set the Start property to following:
IsStart
Set the OnTimerEnd property to following:
Set(var_showloading, false);
Set(IsStart, false)
Set the Visible property of the Timer control to following:
false
Set the OnSuccess property of the Edit form to following:
Notify("Data saved successfully", NotificationType.Success);
Set(var_showloading, true);
Set(IsStart, true)
Set the Visible property of the Hourglass Icon to following:
var_showloading
Please take a try with above solution, then check if the issue is solved.
Best regards,