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
1 answer

Present a loading view that blocks touches

I'm trying to add a subview to view that displays an activity indicator and blocks touches while I'm fetching data from the server. Here is the code that adds the loading view to the main view controller's screen: + (void)showLoadingView { …
Alex
  • 3,861
  • 5
  • 28
  • 44
1
vote
0 answers

Angular: Run JS code when include finished loading image

What I want is to show loading animation while image is loading. Basically I have large system and all code bits are injected using ngInclude. So if I have to construct the bit I'm interested in it would look like:
AlexD
  • 4,062
  • 5
  • 38
  • 65
1
vote
1 answer

Javascript executing out of order

I am making a pathtracer in javascript and I am having a very odd error. This is the relevant section of my code(there is more code beneath it but I don't think it is causing anything. The same outcome occurs if I comment it all out): …
Justin Fry
  • 11
  • 2
1
vote
1 answer

How to make a loading screen during a resource heavy operation

I'm trying to make a loading screen for a game that shows whenever a level is being generated. When the game isn't doing anything, the loading screen works just fine. But when I put in the code to generate levels, the loading screen is a blank…
Jaca
  • 197
  • 1
  • 8
1
vote
1 answer

When i make a pygame game and hover over it, the cursor turns into the loading thing

When i make a pygame game and hover over it, the cursor turns into the loading thing, that means I can't resize the window, or if i were to make buttons i wouldn't be able to use them... Help? Here's my code. import pygame import random import…
ZacG
  • 97
  • 9
1
vote
2 answers

Check through Javascript that page is loading something

When the browser is loading something on a page you can see it in the status bar that it says "Waiting for..." or "Transfering..." etc. In firebug you can check in the net tab when something is being loaded and see when it stops. That is what I…
bluediapente
  • 3,946
  • 5
  • 32
  • 38
1
vote
3 answers

Load SQL dump in PostgreSQL without the password dependancy

I want my unit tests suite to load a SQL file in my database. I use a command like "C:\Program Files\PostgreSQL\8.3\bin"\psql --host 127.0.0.1 --dbname unitTests --file C:\ZendStd\www\voo4\trunk\resources\sql\base_test_projectx.pg.sql --username…
Cédric Girard
  • 3,358
  • 7
  • 37
  • 52
1
vote
1 answer

How to make Spring load a JDBC Driver BEFORE initializing Hibernate's SessionFactory?

I'm developing a Spring(2.5.6)+Hibernate(3.2.6) web application to connect to a custom database. For that I have custom JDBC Driver and Hibernate Dialect. I know for sure that these custom classes work (hard coded stuff on my unit tests). The…
Bill_BsB
  • 314
  • 3
  • 14
1
vote
0 answers

Does Google Page Speed takes javascript into account?

My page is a list of items with one image per item. The whole list is in the html code, but all the items are hidden by default with "display:none" in the CSS file, and a javascript file permits to display them with pagination. If javascript is…
Hibwen
  • 75
  • 4
1
vote
2 answers

Import data from excel to Octave

I'm sure you've already done this question several times but hey he runs again, I might say explicitly how can I import data from excel to Octave and once I've made my calculations, the results re-write on the same sheet Octave, it seems to me that…
1
vote
2 answers
1
vote
2 answers

Loading tables in R with space seperation

How to load a space seperated table with spaces inside the fields? Simple case data: Grade Area School Goals 4 Rural Elm Popular 4 Rural Elm Sports 4 Rural Elm Grades 4 Rural Elm Popular 3 Rural Brentwood Elementary Sports 3 Suburban Ridge…
user3711518
  • 253
  • 1
  • 3
  • 14
1
vote
2 answers

ajaxStart() showing loading message doesn't seem to work

I user jquery.ajax call to controller of asp.net mvc... I would like to show a loading indicator.. I tried this but that doesn't seem to work...
ACP
  • 34,682
  • 100
  • 231
  • 371
1
vote
1 answer

Detecting when all images have loaded in an Angular.js view

I've got a view that I load which contains a substantial number of images (between 100-200 typically), so this can take around 5 seconds to fully load / render, so I want to add a loading indicator during that time. My problem is, I can't seem to…
user1243584
1
vote
1 answer

AngularJS loading indicator with angular-busy and $stateChangeStart

I'm attempting to use the angular-busy directive to trigger a loading indicator on state change. The directive template takes a promise (cg-busy='myPromise'), and I'm using ui-router for my routing. What is the best way to trigger the loading…
Daniel Bogart
  • 1,295
  • 3
  • 18
  • 41