narayana_57
09/01/2020, 1:55 PMSteve Goldberg
09/01/2020, 3:48 PMnarayana_57
09/02/2020, 5:38 AMSteve Goldberg
09/02/2020, 10:35 AMSteve Goldberg
09/02/2020, 10:35 AMSteve Goldberg
09/02/2020, 10:35 AM<div id="loadingIndicator" style="position: fixed; top: 0; left: 0; height: 100%; width: 100%; z-index: 9999; background-color:rgba(255, 255, 255, 0.85);"><img class="global-loading-indicator" src="path/to/your/img/ajax-loader.gif" style="position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%)"></div>Steve Goldberg
09/02/2020, 10:36 AMjQuery(document).unbind('ajaxStart', SC.loadingIndicatorShow);
jQuery(document).unbind('ajaxStop', SC.loadingIndicatorHide);
jQuery('#loadingIndicator').remove();
And then use an extension to add in your ownSteve Goldberg
09/02/2020, 10:36 AMjQuery(document)
.ajaxStart(LoadingIndicatorLibraryFile.loadingIndicatorShow())
.ajaxStop(LoadingIndicatorLibraryFile.loadingIndicatorHide());Steve Goldberg
09/02/2020, 10:37 AMLoadingIndicatorLibraryFile is the dependency with the new loading icon in, and those methods are for showing/hiding itnarayana_57
09/03/2020, 7:08 AM