Question
TCS
IN
Last activity: 29 Apr 2016 7:36 EDT
How to change the busy indicator ?I want custom image ..?
How to change the busy indicator ?I want custom image ..?
-
Like (0)
-
Share this page Facebook Twitter LinkedIn Email Copying... Copied!
Infosys
AU
Which version of Pega? In Pega 7, try overriding pxthrobber.gif binary file rule.
Murali...
TCS
IN
7.1.9
TCS
IN
Hi I am using this code :
function showBusy(flag) {
alert("In SHow Busy");
if (!this.busyIndicator)
this.busyIndicator = new pega.ui.busyIndicator("", true, "", "");
if (flag)
this.busyIndicator.show();
else
this.busyIndicator.hide();
}
srihari...
Infosys
AU
what is the purpose of the JS function you listed? Did you try overriding pxthrobber rule? I think it is the easiest way to have a new busy indicator in place OOTB busy indicator.
Murali...
Infosys
AU
Related mesh post: https://mesh.pega.com/message/181653#181653
Check if pxthrobber is still a final rule in 7.1.9
Murali...
TCS
IN
Thanks Murali
Pegasystems Inc.
GB
pxThrobber is still a final rule as of 7.2
There is a support article with one approach to changing the image:
https://community.pega.com/support/support-articles/change-default-pega-busy-indicator-image
TCS
IN
Thanks Marc