Question
8
Replies
115
Views
Eclatprime Digital Pvt.Ltd
Posted: February 20, 2020
Last activity: February 24, 2020
Busy Indicator not displaying
My requirement is to display busy indicator/loading icon while Activity is loading data from Database. On button click . It runs the activity directly which fetches all data from database and downloads pdf attachment . I want to display the busy indicator untill pdf attachment is downloaded.
I have gone through all the Pdn articles on busyt indicator but no use.
Could any one please help me out
Can you run the below js code on button click and see if it helps.
<script> function showBusyInd(e) { var target = e.target; var sectionEle = $(target).closest('.modal-overlay#modalOverlay'); pega.u.d.gBusyInd._sNode = sectionEle[0]; pega.u.d.gBusyInd.show(null, true); setTimeout(function(){pega.u.d.gBusyInd.hide()}, 10000); } </script>