Hello Team,
I am using Helical Insight EE 4.0 RC2. There is a popup screen that appears showing loading screen (how many resources are loaded and how many are pending). I want to customize this screen. How do I do it?
Thank You
Hello Team,
I am using Helical Insight EE 4.0 RC2. There is a popup screen that appears showing loading screen (how many resources are loaded and how many are pending). I want to customize this screen. How do I do it?
Thank You
Hello Degiba,
To Change the “Loading” modal on a dashboard , follow these steps:
e.g.
Comment the whole div and paste below sample code. You can accordingly make changes :
<div data-keyboard="false" data-backdrop="static" id="hdi-blockUI" class="modal"
role="dialog">
<div class="modal-dialog modal-dialog-centered" style="width:10vw;">
<div class="modal-content">
<div class="modal-header" style="border-bottom:0px" >
<button type="button" class="close" data-dismiss="modal" onClick="_reset_loading_panel()">×</button>
</div>
<div class="modal-body">
<div>
<div class="row">
<div class="col-md-6" style="font-size: x-large; color:#746a6f"><span class="glyphicon glyphicon-repeat spin"></span></div>
<div class="col-md-6" style="font-size: x-large; color:#746a6f"><span class = "pull-right" id="request-count">0</span></div>
</div>
</div>
</div>
</div>
</div>
</div>
You can refer to the attached working code as a reference
DashboardLoadingIconCustomization.zip (56.6 KB)