Question
Sun Life Financial
CA
Last activity: 20 Sep 2019 14:13 EDT
can we refer custom html code as busy indicator in pega
In the below cod if we refer a gif it works, but can we use custom HTML section or html fragment or text file as a reference for busy indicator.
<script>
/*New busy Loader*/
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>
***Edited by Moderator Marissa to update platform capability tags****