Can you trigger the busy activity indicator (spinner) during a file download using javascript? The same indicator when a service is invoked, can it be done on demand?
Can you trigger the busy activity indicator (spinner) during a file download using javascript? The same indicator when a service is invoked, can it be done on demand?
You might be able to do some custom indicator. The default one is shown during Ajax request.
Does the App Builder platform have a in-built command to call the default one? if not, perhaps consider this a feature request?
You can use JavaScript.
To show spinner:
codeshowSpinner();/code
Use this to hide it:
codehideSpinner();/code
Hi. Do I need to include any libraries, as it doesn't seem to work.
You do not need any libraries to use this functions. Just create 'Run custom JavaScript' action that calls showSpinner().
i need to show a custome gif image.. is it possible?
Hello! Here is an example
#ajaxBusy {
display:none;
position: fixed;
z-index:999999;
height:99%;
width:99%;
background: url("http://project.tiggzi.com/resources/i...") no-repeat 50% 50%;
}
#ajaxBusy p {
display: none !important;
}
thank you. you are such a brain ![]()
should i paste this in css????