Question
Busy Indicator Script not working
I want to show Busy indicator icon in Repeat grid when one of the columns is being updated. I do not want user to perform any operation until the post events are completed for this field. So, I included the following script in the userworkform
<script>
function setBusyIndicatorCustom(){
pega.u.d.busyIndInterval = 0;
pega.u.d.setBusyIndicator();
}
function resetBusyIndicatorCustom(){
pega.u.d.busyIndInterval = 2000;
if(pega.u.d.gBusyInd){
pega.u.d.gBusyInd.hide();
}
}
</script>
I also invoked the script from the section. Pls see attachments.
However the busy indicator is not triggering at all. The user is able to update other columns while the post events are still running. Can you pls help?
We are using pega 7.2.1
Hi Karthik,
Could you please add a wait between the 2 busy indicator scripts and then check if you could see the busy indicator or not.
Also you have done a private checkout of the userworkform and added the script will be valid only if you are running the use case with the same operator.
Regards,
Vikash