Questions tagged [busyindicator]

UI Component that displays some form of activity, via animation, progress bar, text status change or others, while a background operation is running, to notify the user of an indeterminate progress.

144 questions
236
votes
27 answers

Show spinner GIF during an $http request in AngularJS?

I am using the $http service of AngularJS to make an Ajax request. How can a spinner GIF (or another type of busy indicator) be shown while the Ajax request is executing? I don't see anything like an ajaxstartevent in the AngularJS documentation.
Ajay Beniwal
  • 18,857
  • 9
  • 81
  • 99
31
votes
6 answers

Simplest way to create busy animation in WPF

I mentioned that there is no standard busy control in WPF. So what's the easiest way to display animated busy circle (not progress bar) such as your browser displays when loading a page ? Please if you suggest downloading control from internet make…
Rasto
  • 17,204
  • 47
  • 154
  • 245
17
votes
5 answers

How to display a busy indicator in a shiny app?

Note : I have read almost all the discussions on this object in shiny googlegroups and here in SO. I need an indicator that shows the shiny server is busy. I have tried shiny-incubator, however, the problem is that I can't set a max for progress…
Elaheh kamaliha
  • 753
  • 2
  • 8
  • 17
9
votes
2 answers

How to do 'busy' animation in Android?

Doesn't seem to be covered in the books Ive looked at.
Eno
  • 10,730
  • 18
  • 53
  • 86
6
votes
1 answer

The type toolkit:BusyIndicator was not found

I'm working on a WPF project with the beginning of a UserControl defined as:
Nick Heidke
  • 2,787
  • 2
  • 34
  • 58
5
votes
1 answer

Which dll has 'BusyIndicator' for silverlight?

I have installed Nov '09 silverlight 3 toolkit. Referenced System.Windows.Control from C:\Program Files\Microsoft SDKs\Silverlight\v3.0 Libraries\Client\System.Windows.Controls.dll but when I compile my code I am getting "Error 6 The type or…
Nair
  • 7,438
  • 10
  • 41
  • 69
5
votes
1 answer

Is it possible to change the busy animation in the Busyindicator of Extended WPF Toolkit?

Is it possible to change the busy animation in the Busyindicator of Extended WPF Toolkit? In particular, I would like to change it to a .gif animation.
Seth
  • 8,213
  • 14
  • 71
  • 103
5
votes
1 answer

How do I continue after multiple Tasks without blocking the UI thread?

In my MVVM application my view model calls 3 different service methods, converts the data from each into a common format and then updates the UI using property notification/observable collections etc. Each method in the service layer starts a new…
BenCr
  • 5,991
  • 5
  • 44
  • 68
5
votes
4 answers

How to display message box without any buttons in C#

I try to show a MESSAGE to the user while an operation is executed. The MESSAGE won't show any button. Just a MESSAGE (text) and maybe a background image. The problem is the following: MessageBox does not seem to be the good control (because of…
user1520860
  • 51
  • 1
  • 1
  • 3
4
votes
2 answers

wpf busyindicator not showing up

I have a wpf busy indicator like this on my window: And in the button click I m trying to set the visiblity,isBusy…
alice7
  • 3,834
  • 14
  • 64
  • 93
4
votes
2 answers

Make a blinking busy indicator on python shell

I want to make * flash on the command line in a 1 second interval. import time from sys import stdout while True: stdout.write(' *') time.sleep(.5) stdout.write('\r ') time.sleep(.5) All I get is a blank line, no flashing *. Why…
lo tolmencre
  • 3,804
  • 3
  • 30
  • 60
4
votes
1 answer

Styling the Extended Toolkit BusyIndicator

I'm looking to style the BusyIndicator so it looks something along the lines of this; At the moment my busy indicator does not take up the whole Window that it is placed in too, which I would like it to do. My current BusyIndicator looks like…
CBreeze
  • 2,925
  • 4
  • 38
  • 93
4
votes
1 answer

Javascript - disable busy indicator of browser tab

Is there a way to disable the busy indicator (loading spinning) of the browser tab with JavaScript? I want to disable this behavior when an iframe loads.
Eduardo B.M.
  • 111
  • 1
  • 9
3
votes
1 answer

How do I check if Windows is currently displaying the busy cursor?

I know how to set the current cursor, but how do I check on the operating-system level if Windows is displaying the Busy cursor? Otherwise, how do I check if Windows is in the "busy" state?
deavon
  • 53
  • 6
3
votes
2 answers

How to show Silverlight Toolkit Busy Indicator during calculation?

I'm having some problems implementing a control that shows a Busy indicator, here is the scenario: I have a simple View with a busy indicator and a TextBlock, this bind to a ViewModel (that is something like the following). public class ViewModel { …
Ariel
  • 1,641
  • 1
  • 18
  • 27
1
2 3
9 10