Question
Virtusa
IN
Last activity: 8 Feb 2019 8:03 EST
Need to hide busy indicator in the embedded section of the repeating grid
Hi team,
We have implemented a business scenario like auto- refresh the section by using defer load activity, in that we have used wait method to delay upto 30 secs and we have included our own refreshing icon by using the section pyLoadingmessage but when delaying this section the busy indicator is overlapping with the our own refreshing icon. So, here we have to hide the default pega busy indicator. We tried below scenarios but none of them didnt work.
1.included below script in the userworkform html fragment and on click of button in the actions tab included Run script.
2. We have created one non-auto generated section, in that we have included the below script.
3. We tried with control by creating new control and referred this in the section.
Please help us if there are any other scenarios to hide the busy indicator.
<script>
function hideMask(){
pega.u.d.gBusyInd.hide();
</script>