Page 1 of 2

Busy activity indicator (spinner)

Posted: Mon Nov 26, 2012 7:01 pm
by HumZ

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?


Busy activity indicator (spinner)

Posted: Tue Nov 27, 2012 4:49 am
by maxkatz

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


Busy activity indicator (spinner)

Posted: Tue Nov 27, 2012 8:19 am
by HumZ

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


Busy activity indicator (spinner)

Posted: Tue Nov 27, 2012 2:44 pm
by Kateryna Grynko

You can use JavaScript.

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


Busy activity indicator (spinner)

Posted: Thu Nov 29, 2012 2:16 pm
by HumZ

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


Busy activity indicator (spinner)

Posted: Thu Nov 29, 2012 2:26 pm
by Kateryna Grynko

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


Busy activity indicator (spinner)

Posted: Fri Dec 14, 2012 6:37 am
by aviz

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


Busy activity indicator (spinner)

Posted: Fri Dec 14, 2012 9:37 am
by Maryna Brodina

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


Busy activity indicator (spinner)

Posted: Fri Dec 14, 2012 9:53 am
by aviz

thank you. you are such a brain :)


Busy activity indicator (spinner)

Posted: Fri Dec 14, 2012 9:56 am
by aviz

should i paste this in css????