HumZ
Posts: 0
Joined: Thu Nov 15, 2012 10:11 am

Busy activity indicator (spinner)

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?

maxkatz
Posts: 0
Joined: Fri Aug 13, 2010 3:24 pm

Busy activity indicator (spinner)

You might be able to do some custom indicator. The default one is shown during Ajax request.

HumZ
Posts: 0
Joined: Thu Nov 15, 2012 10:11 am

Busy activity indicator (spinner)

Does the App Builder platform have a in-built command to call the default one? if not, perhaps consider this a feature request?

Kateryna Grynko
Posts: 0
Joined: Thu Nov 15, 2012 9:13 am

Busy activity indicator (spinner)

You can use JavaScript.

To show spinner:
codeshowSpinner();/code
Use this to hide it:
codehideSpinner();/code

HumZ
Posts: 0
Joined: Thu Nov 15, 2012 10:11 am

Busy activity indicator (spinner)

Hi. Do I need to include any libraries, as it doesn't seem to work.

Kateryna Grynko
Posts: 0
Joined: Thu Nov 15, 2012 9:13 am

Busy activity indicator (spinner)

You do not need any libraries to use this functions. Just create 'Run custom JavaScript' action that calls showSpinner().

aviz
Posts: 0
Joined: Fri Dec 14, 2012 6:37 am

Busy activity indicator (spinner)

i need to show a custome gif image.. is it possible?

Maryna Brodina
Posts: 0
Joined: Thu Apr 05, 2012 7:27 am

Busy activity indicator (spinner)

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;
}

aviz
Posts: 0
Joined: Fri Dec 14, 2012 6:37 am

Busy activity indicator (spinner)

thank you. you are such a brain :)

aviz
Posts: 0
Joined: Fri Dec 14, 2012 6:37 am

Busy activity indicator (spinner)

should i paste this in css????

Return to “Issues”