Busy Indicator is not showing properly on Mobile
The busy indicator (or loader) is not being displayed on Android phones when a page is being loaded. It looks like the page is frozen while in fact it is loading. Does anyone know if there is a way to trigger the loader icon when a page takes a couple of seconds to load?
we tried to add the below to UserWorkForm HTML fragment rule
BusyGo = function(){
pega.u.d.busyIndInterval = 0;
pega.u.d.setBusyIndicator();
}
BusyStop = function(){
pega.u.d.busyIndInterval = 2000;
if(pega.u.d.gBusyInd){
pega.u.d.gBusyInd.hide();
}
}
and then call these functions from the 'Run Script' actions, but it's still not always working.
Any help would be much appreciated.
***Moderator Edit: Vidyaranjan | Updated Categories***