Question
![](/profiles/pega_profile/modules/pega_user_image/assets/user-icon.png)
![](/profiles/pega_profile/modules/pega_user_image/assets/user-icon.png)
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!
![](/profiles/pega_profile/modules/pega_user_image/assets/user-icon.png)
![](/profiles/pega_profile/modules/pega_user_image/assets/user-icon.png)
Infosys
AU
Which version of Pega? In Pega 7, try overriding pxthrobber.gif binary file rule.
Murali...
![](/profiles/pega_profile/modules/pega_user_image/assets/user-icon.png)
![](/profiles/pega_profile/modules/pega_user_image/assets/user-icon.png)
TCS
IN
7.1.9
![](/profiles/pega_profile/modules/pega_user_image/assets/user-icon.png)
![](/profiles/pega_profile/modules/pega_user_image/assets/user-icon.png)
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...
![](/profiles/pega_profile/modules/pega_user_image/assets/user-icon.png)
![](/profiles/pega_profile/modules/pega_user_image/assets/user-icon.png)
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...
![](/profiles/pega_profile/modules/pega_user_image/assets/user-icon.png)
![](/profiles/pega_profile/modules/pega_user_image/assets/user-icon.png)
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...
![](/profiles/pega_profile/modules/pega_user_image/assets/user-icon.png)
![](/profiles/pega_profile/modules/pega_user_image/assets/user-icon.png)
TCS
IN
Thanks Murali
![](https://accounts.pega.com/sites/default/files/styles/user_image/public/2024-04/0aeea859-d28c-4613-ad9b-910b23846ea5.jpg?h=f9b91d5d&itok=P_fwua_A)
![](https://accounts.pega.com/sites/default/files/styles/user_image/public/2024-04/0aeea859-d28c-4613-ad9b-910b23846ea5.jpg?h=f9b91d5d&itok=P_fwua_A)
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
![](/profiles/pega_profile/modules/pega_user_image/assets/user-icon.png)
![](/profiles/pega_profile/modules/pega_user_image/assets/user-icon.png)
TCS
IN
Thanks Marc