Question
Areteans
NZ
Last activity: 17 Feb 2021 10:12 EST
Customize the default screen load or refresh image
Hello,
We are using PRPC 8.1 and we would like to customize the default screen load or refresh image
PFA for the OOTB refresh image which we want to modify.
Any suggestions are appreciated.
Thanks,
Satish
***Edited by Moderator: Pallavi to update platform capability tags***
-
Like (0)
-
Share this page Facebook Twitter LinkedIn Email Copying... Copied!
Accepted Solution
Updated: 28 Feb 2019 16:11 EST
Pegasystems Inc.
IN
Hi Satish,
I have followed the below steps and was able to customize the busy indicator:
Hi Satish,
I have followed the below steps and was able to customize the busy indicator:
- Create a binary file with custom image (say "newbusyindicator")
- Save-as the UserWorkForm in the available Application ruleset, add the below snippet in HTML Source.
<script>
pega.ui.busyIndicator.prototype.createIndicatorImage = function() {
if(this.oSpan == null)
this.initialize(this._sNode);
var oSpan = this.oSpan;
if (this._message && this._message.length > 0) oSpan.innerHTML = "<img src = 'webwb/newbusyindicator.gif' alt='loading' />" + " " + this._message ;
else oSpan.innerHTML = "<img src = 'webwb/newbusyindicator.gif' alt='loading' />";
}
</script>
Areteans
NZ
Thanks for the response. Will try this approach and keep you updated.
Areteans
NZ
Hi Vikash,
Are there any specific dimensions and file extensions that need to be used for custom image as I dont see my image loading but I see that OOTB image is no longer appearing.
Pegasystems Inc.
IN
Can you try with some gif of proper size, you can download it from google and use the same.
Or you can even use the same gif that i used and check.
Also while creating the binary file what file type extension you have given?
After uploading the file can you see the gif in the binary file?
Areteans
NZ
Hi Vikash,
Please ignore my previous response. My issue has been fixed as per the js shared by you. Thanks a lot.
CHENNAI INSTITUTE OF TECHNOLOGY
IN
how can i create a binary file with image
Updated: 6 Apr 2020 4:32 EDT
Coforge
IN
Go to records tab --->technical ----->Binary File ----> Create
Chennai Institute of Technology
IN