Questions tagged [loading]

Loading refers to retrieving necessary information for display or functionality.

Loading refers to retrieving necessary information for display or functionality. It often occurs between a client and a server computer, and can be indicated with different animations. Use this tag when asking questions about how to load information and errors concerning loading.

3827 questions
1
vote
2 answers

Show Loading Bar or animated GIF while CSS and JS files are loading?

I've seen this question asked in pieces (just JS or just CSS) on other sites and SO, but I haven't seen a good solid way to do this yet. My situation is fairly common. I'm using .NET MVC and developing in Visual Studio. I have a Site.Master page…
Matt
  • 23,363
  • 39
  • 111
  • 152
1
vote
1 answer
1
vote
1 answer

Eclipse loading box pops up then quickly disappears, why isn't it loading?

I have been using eclipse for a few months for a java course at school on my laptop. It's about 3 years old and probably on its last legs, and now whenever I click the eclipse shortcut on my desktop, or try to load Eclipse through any other means…
1
vote
2 answers

Referenced Model Loading in Google App Engine

In Python, say I've got a model of class A that has a ReferenceProperty b to model class B, which has a ReferenceProperty c to model class C. Assuming an instance of A already exists in the datastore, I can get it by saying: q = A.all() a =…
Cameron
  • 96,106
  • 25
  • 196
  • 225
1
vote
0 answers

Python Tkinter: loading screen

I have created a GUI using Tkinter. The GUI is supposed to open a file and read the content. However, if the file content is really big and if certain task takes up a lot of time, it would require a loading screen to let user know it is loading.…
James the Great
  • 941
  • 2
  • 14
  • 46
1
vote
2 answers

Javascript Code works in jsfiddle and but not in the Browser

I have tried searching similar problems but have not been able to find the reason why my code works in jfiddle but not in a browser. I have also tried making a copy of my code from jfiddle to another fiddle project and the code doesn't work in the…
AndrewH
  • 370
  • 8
  • 25
1
vote
3 answers

Have a script to run only after external content has loaded

Before anybody asks, this is not the common question about how to run a script after the page loads or anything like that. Basically, I have this example (fiddle), $.getScript("http://platform.linkedin.com/in.js").done(function() { …
lucasnadalutti
  • 5,818
  • 1
  • 28
  • 48
1
vote
2 answers

angularjs $stateprovider doesn't load

I just started changing some code from another person and tried to add a simply html with a controller. My problem is, that my html wont load and if I navigate to it .. the system simply displays: Loading... here is the html:
1
vote
0 answers

Pskill doesn't work when loading a page with PHP (and doesn't kill the process)

I must kill remotely a process (for example calc.exe) but when I try to load my PHP page on internet it keeps loading and does nothing here is multiple techniques I have used but none of them work: exec("pskill \\\\ipadress calc -u user -p…
Levrifon
  • 13
  • 6
1
vote
0 answers

Cross Browser solution to show progress bar while loading javascript files

I was looking for a way that I can show a (gmail-like) progress bar when the page is loading js file. reading this post I wrote a code that helped me to show the progress bar in mozilla FireFox as this other post states! var oReq = new…
Bellash
  • 7,560
  • 6
  • 53
  • 86
1
vote
1 answer

Jquery Block ui only show on ajaxStart of a function

I am currently using Blockui to block the page and show a loading gif when an ajax function is being performed. See here: $(document).ready(function() { //shows loading screen whilst posting via ajax $().ajaxStart(function() { …
user272899
  • 871
  • 5
  • 16
  • 22
1
vote
2 answers

How to create dynamic instance of assembly ( C# ) and loading the dependencies of instance assembly dynamically as well?

I am loading CalculatorDependency.dll to AppDomain which is dependency of Add class (implementation of IAdd from Calculator.Interface.dll) from Calculator.dll. The thing is I don't want to put implementer dll (Calculator.dll) and it's dependency dll…
GDroid
  • 1,254
  • 1
  • 16
  • 36
1
vote
0 answers

Get ajax response when other page (loading ajax too) finished

I have a page that performs many ajax requests and a button that uses ajax for that page. I want the button to give an alert when the ajax on the first page finishes. But i get the response right away (while ajax requests on other page keep…
Nir Tzezana
  • 2,275
  • 3
  • 33
  • 56
1
vote
1 answer

Any way to delay firing Embers model in beforeModel hook?

I need to add spinning loader to component. My component observing global object global.loading. I'm setting global.loading to true in beforeModel hook in my route. The problem that there is some sort of race-condition: UI thread gets blocked by the…
rinchik
  • 2,642
  • 8
  • 29
  • 46
1
vote
1 answer

My website takes too long to load data from my API

It's my first time developing an API, which is why i'm not surpirsed it was running a little slow, taking 2-4 seconds to load (I used a microtime timer on my webpage). But then I found out how long it took for the API commands to execute, they're…
Blease
  • 1,380
  • 4
  • 38
  • 64