UIComponent that plays an animation while a background operation is running to alert the user of indeterminate progress.

learn more… | top users | synonyms

0
votes
0answers
23 views

Silverlight Busy Indicator Customr Template

I am trying to use the Silverlight busy indicator control from the tool kit, and applying my own custom template for the UI. The code for the xaml looks like this <UserControl ...
0
votes
1answer
44 views

BusyIndicator not showing from async method

I'm trying to upgrade methods, which were previously BackgroundWorker based, to use the async calls from the Microsoft.Bcl.Async library. The trouble I'm having is the busy indicator no longer works ...
1
vote
1answer
49 views

Flex: BusyIndicator on top of a button?

I am a newbie to flex, using flex 4.6 with FB 4.7. I am trying to create a BusyIndicator "in front of" (and in the middle of) a Button. I found some examples on Google on image stacking, but for some ...
0
votes
1answer
150 views

WPF Best way of displaying a busy indicator when dynamically creating a page

I have a WPF application that runs as an XBAP in a browser. On a few pages all the controls are dynamically created depending on what the user selects. Because of this it can look like the ...
1
vote
1answer
194 views

wicket ajax indicator

I have this situation: I have an IndicatingAjaxButton. In the onSubmit method some operations get done and then the setResponsePage(otherPage); is called While the operations are still in progress ...
0
votes
0answers
103 views

BusyIndicator not showing to UI

I'm wanting to use a busy indicator however it will not show to the page. When starting a new business application in Visual Studio 2010 it creates a busy indicator style for you which you can ...
-1
votes
1answer
150 views

WL.busyindicator Worklight [closed]

Could any one help me? I have to use IBM Worklight's busy indicator. Please guide me or give me any example. I have to use it with Multipage "Page Fragments".
2
votes
2answers
289 views

RadBusyIndicator not showing PRISM/MEF/WPF from ViewModel

I am using MVVM/PRISM/MEF for my WPF application. It has one DataGrid with multiple records, and when one row is double clicked a separate view is added to region with multiple controls on it, the ...
-2
votes
1answer
141 views

The calling thread cannot access the object because a different thread owns it

In my project I have a busyindicator and I'm using ListObject in FirstMethod and SecondMethod. The program gives the following error: The calling thread cannot access the object because a ...
0
votes
2answers
242 views

Can't find what assembly contains BusyIndicator

I had my project written in Silverlight 4. Recently I've reinstalled my system and installed Silverlight 5. But when I re-installed "everything" I got the problem with BusyIndicator. It does look like ...
1
vote
1answer
231 views

BusyIndicator allows to fire RelayCommand twice

I have a WPF application, which follows MVVM. To make UI responsive, I'm using TPL for executing long-running commands and BusyIndicator to display to user, that application is busy now. In one ...
0
votes
1answer
231 views

Flex 4.6 BusyIndicator Missing

<fx:Declarations> </fx:Declarations> <s:BusyIndicator> </s:BusyIndicator> Error message is => Could not resolve {} to a component implementation. Any ...
1
vote
1answer
117 views

Using JBusyComponent With JTable In JFrame

I am getting following excpetion Exception in thread "AWT-EventQueue-0" java.lang.NoClassDefFoundError: org/divxdede/text/TimeFormat at ...
0
votes
0answers
458 views

BusyIndicator.BusyContent of WPF Toolkit Extended should use all available space

I have a resizable window with a BusyIndicator. If the user resizes the window while the application is busy, I want the busy content of the BusyIndicator to be resized as well. At the moment it's ...
0
votes
2answers
882 views

Show a busy indicator in a DIV with JQuery

I have an animated .gif that I want to use as a busy indicator. This busy indicator will be used while some content is loading. Once loaded, the content will appear within a div. While the content is ...
2
votes
1answer
247 views

problems with binding data to data templates inside a busyindicator

i have some code in wpf in that i have used busyindicator and i set datatemplete now my problem is that i used mvvm pattern in my applicaton and i want to used busyindicator on that but i don't know ...
2
votes
4answers
920 views

diplay message box without any buttons

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 ...
0
votes
1answer
262 views

Newbie: Invalid cross thread access with using busyindicator (silverlight and wcf service)

I have a problem with the busyindicator control of silverlight. I have a datagrid (datagrid1) with its source set to a wcf service (client). I would like to use the busyindicator control (bi) of ...
1
vote
1answer
342 views

How to display BusyIndicator in a ComboBox

I am using Silverlight 5 with WCF Ria Services. For fast development I coded a provider based system to populate ComboBoxes. When I set provider for a combo and bind EditValue to ViewModel everything ...
0
votes
1answer
122 views

simple way to detect connection timeout for dataservice

I'm developing a mobile project which gets some simple data trough a dataservice. When the application is getting the data i've got a busyindicator spinning, but i don't want it spinning forever ...
0
votes
1answer
382 views

Silverlight 4, XAML: How to extend <toolkit:BusyIndicator> to several grid columns?

So I have a following XAML code: <Grid> <Grid.ColumnDefinitions> <ColumnDefinition Width="214" /> <ColumnDefinition /> </Grid.ColumnDefinitions> ...
0
votes
1answer
388 views

Caliburn.micro show busy indicator when loading controls

I am looking for a way to show a busy indicator when Caliburn is loading a control. That means when caliburn automatically calls the OnInitialize-Method I would like it to show an busy indicator above ...
1
vote
1answer
149 views

Centralize before and after actions around a new task created by TPL

In our application ,we use TPL to create tasks whenever we would want to make a service call.We have a busy indicator which is set to true whenever a task is started and cleared whenever the task is ...
1
vote
1answer
528 views

silverlight tooltip BusyIndicator shadow effect on Silverlight 5

I have a strange behavior in Silverlight 5 with the BusyIndicator from Silverlight Toolkit Apr 2010. I get a strange shadow effect on Silverlight 5, but in Silverlight 4 there is no shadow. Did ...
0
votes
1answer
251 views

“Loading” icon during Flex Mobile HTTPService

Is there any way to display some sort of "loading" sign or icon during a HTTPService call in Flex Mobile? Something like showBusyCursor in regular flex? Thanks, Aaron
0
votes
2answers
778 views

Flex Mobile Busy Indicator on Database Create

I am very new to flex and have no idea what is going on, lol. I want to create a large database from an xml file but while inserting the records in the database the app freezes until everything is ...
-1
votes
1answer
424 views

Busy Indicator not responding on XAML loading

I have a WPF application that has a complex UI with large data binding. I'm using WCF aynchronous calls to server for data. It will take around 4 seconds to get the data from server and for XAML ...
0
votes
0answers
135 views

Activity Indicator in J2ME

I wish to display an activity indicator in J2ME when I am performing some network activity (HTTP requests and XML parsing). I have seen gauges being turned into activity indicators: Gauge _gauge = ...
0
votes
1answer
542 views

Silverlight BusyIndicator Background Colour

Is there a simple way of changing the background colour of the default busy indicator from the default grey to white gradient to another colour? Example image of the default busy indicator can be ...
0
votes
4answers
2k views

Showing busy indicator control inside a UI

I have modified code, but now I have another problem. The InvalidOperation exception occurs inside if statement on validating user info. It says that the calling thread cannot access this object ...
1
vote
1answer
347 views

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?
0
votes
0answers
250 views

Flex Mobile feedback while loading images

i got some spark image components in my app with embedded src. if the view will pushed to the stage, the images begins to load ... and while the loading progress... i cant show an busyindicator ...
1
vote
2answers
863 views

SIlverlight BusyIndicator : Higher Z-Index than all ChildWindows

Perhaps the title is worded incorrectly. I have a "global" Busy Indicator that works great, as long as I don't try to use it when a ChildWindow is open. I access the "global" Busy Indicator by using ...
1
vote
1answer
832 views

Silverlight toolkit namespace is “sometimes” unknown

I use the BusyIndicator control from the SL Toolkit 5 in a ChildWindow. In some solutions, it works but in others, with exactly the same code (at least it seems), I get the following exception at ...
1
vote
2answers
781 views

Binding a UserControl to a custom BusyIndicator control

I have a requirement to focus on a specific textbox when a new view is loaded. The solution was to add this line of code to the OnLoaded event for the view: Dispatcher.BeginInvoke(() => { ...
0
votes
0answers
411 views

Flex Mobile Project: Busy Indicator not spinning while function is working

protected function showBusy(event:Event):void { bi.visible=true; myFunction(event); } I have busy indicator,id is "bi", and I want to make it work while ...
-3
votes
2answers
1k views

need a busy indicator [closed]

How can I display some sort of a busy indicator in my WPF application? I have a control that takes a while to load and I want the user to be informed that the data is being loaded to the control. ...
0
votes
1answer
540 views

How to get the value of the progressBar of a busyIndicator in Silverlight?

I would like to know how can I get the percentage value of a progress bar of a BusyIndiccator in silverlight? I am new in using this control. I hope I can get the answer to my question. Thanks!
0
votes
0answers
121 views

Text color does not return to normal after busy indicator shown

I'm using the BusyIndicator from the Extended WPF toolkit. Functionally, it is working fine. It shows when I set IsBusy to true, and disappears when I set the same to false. However, after it ...
0
votes
1answer
752 views

How to set BusyIndicator to the center of window?

WPF: set BusyIndicator to the center of window
0
votes
2answers
2k views

Display busyindicator in wpf application

I have a BusyIndicator from the wpf extended toolkit and I'm running a function that takes a while to complete. If I run the time consuming task in a separate thread, I get a NotSupportedException ...
0
votes
1answer
436 views

Silverlight Custom Loading Screen Like MBProgressHUD

Just wondering if anybody has any advice on making a custom loading indicator/HUD for silverlight that resembles the MBProgressHUD for the iphone. https://github.com/jdg/MBProgressHUD All I want is ...
2
votes
3answers
1k views

WinForms: Looking for an easy way to pop up a 'Processing..' panel

I have a WinForms application that, at some point, will do some calculations that take a couple of seconds. During this time, I disable the controls. Additionally I want to display a popup that kind ...
0
votes
1answer
290 views

Best way to have 'busy waiting' animation be 'position configurable' in jquery? (i.e., show it where the action is)

I intend to have a busy waiting spinner as per shown in this post: How to show loading spinner in jQuery? - since it's the cleanest and easiest to implement: $('#loadingDiv') .hide() // ...
3
votes
2answers
2k views

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 ...
3
votes
2answers
1k views

How to force BusyIndicator?

I use Extended WPF Toolkit BusyIndicator My Xaml <extToolkit:BusyIndicator Name="wait" IsBusy="False" Cursor="Wait" Grid.ColumnSpan="3" Margin="10,10,10,10"/> My code: private void ...
1
vote
2answers
113 views

Access private members in Silverlight

I am pretty new to Silverlight but I see this being done all the time. I just don't know yet how to do it. How do I access functionality of a private member? First of all, I got a runtime error ...
2
votes
2answers
3k views

wpf busyindicator not showing up

I have a wpf busy indicator like this on my window: <Grid><Controls1:BusyIndicator x:Name="busyIndicator2" IsBusy="False" Content="Please wait....." Visibility="Hidden"/> </Grid> ...
5
votes
1answer
2k views

The type toolkit:BusyIndicator was not found

I'm working on a WPF project with the beginning of a UserControl defined as: <UserControl x:Class="" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
2
votes
1answer
1k views

Busy indicator not showing up in wpf window [duplicate]

Possible Duplicate: wpf busyindicator not showing up I am tryihng to use busy indicator in a window like this: <extToolkit:BusyIndicator Width="160" Height="100" ...

1 2