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

JS File Not Loading When URL is Directory

I wrote a simple 404 page for my website that tells you a joke every time it is loaded. I am accomplishing this with the use of the StackExhange API and am drawing questions off of this thread. Everything works as intended when I purposely trigger…
Brian Tracy
  • 6,801
  • 2
  • 33
  • 48
1
vote
2 answers

Loading Java applet from WEB-INF/classes by JSP

Ive got a problem with loading an applet from WEB-INF/classes directory. The main class of an applet (MainApplet.class) is there in the package aaa, but when loading I got the exception java.lang.ClassNotFoundException. Where am I wrong? My jsp is…
Bruce
  • 65
  • 2
  • 8
1
vote
2 answers

My loading screen is not closing

I am trying to show some loading screen while my work is in progress. My work is justto move one file at a time from one cell to another cell, the code is working perfectly. Butwhen i am trying to move a group of files the loading screen is coming…
user4318274
1
vote
2 answers

Find when Javascript is paused (hard to summarize)

I'm making a little game out of Javascript, and I'm a little stuck. The game is basically one of those virtual pets, where you have to feed and do stuff with the pet. Now, I have a hunger system made were every 3 seconds the pet gets a little more…
Hutch
  • 63
  • 6
1
vote
6 answers

Show "Loading..." dialog in onCreateView

I have these codes in my project: @Override public View onCreateView(LayoutInflater inflater, ViewGroup container,Bundle savedInstanceState) { int intPos = getArguments().getInt(ARG_SECTION_NUMBER); View rootView; …
Arma
  • 152
  • 1
  • 12
1
vote
1 answer

Dynamically loaded elements are not in the HTML source code

I am fetching an attribute of a div from a page which loads the elements dynamically upon scrolling to the bottom of the page. There are 10 div's on the page initially and upon scrolling 10 new div's are loaded each time dynamically to the page. My…
user3649090
  • 21
  • 1
  • 5
1
vote
2 answers

How to show a loading screen till my function completes

I have a function called Export Excel which basically exports data to excel and saves it. So i need to show a splash screen till my function completes the job. How can i do this. EDITED : How to close my Please wait screen before showing the below…
user4240000
1
vote
1 answer

How to deal with asynchronous loading of assets? Accessing right away returns undefined

I am loading my assets into an array with a function LoadJSON() that uses THREE.ObjectLoader() (assets are JSON files) . If I try to access the members of the array shortly after calling LoadJSON() it returns undefined and my program fails to run.…
mikel942
  • 23
  • 2
1
vote
0 answers

IE with Google maps loads page after delay

I've got very strange behavior in IE10/11 (ASP.Net MVC5) Steps: Click on any link Request is sent and "loading" icon appears Loading" icon disappears, but nothing happens After some delay page content suddenly appears Here is demo video:…
1
vote
2 answers

linking, loading, and virtual memory

I know these questions have been asked before - but I still can't reconcile everything together into an overall picture. static vs dynamic library static libraries have their code copied and linked into the resulting executable static libraries…
user167524
  • 87
  • 7
1
vote
1 answer

PHP corrupted readed file

my php file looks like: $file = file("test.cpp"); //checks if file is opened properly... foreach($file as $line) { echo $lines."
"; } test.cpp file looks like: #include int main() { int a,b,c; cin>>a>>b; cout<
encoree1337
  • 317
  • 2
  • 15
1
vote
1 answer

grouped collada models onload three.js

I am currently loading in a bunch of elements of a model and adding them to a group. I then want to be able to move the group as a whole unit after they load. My issue is, how can I run code once I have ensured that all of my models have loaded? I…
Laura
  • 469
  • 1
  • 6
  • 12
1
vote
1 answer

Use of webfonts and weights in a Web application

I was recently contacted by a client to develop a mockup for a Webapp. Since the complexity of the web application is rather high with regard to the number of buttons, options and plain text that appear on each of the pages/screenshots I have been…
djur
  • 304
  • 2
  • 13
1
vote
1 answer

Infinite-Scroll Loading Animation Not Working

I'm using Paul Irish's Infinite-Scroll jQuery plugin in combination with Isotope. It seems to be working well except for one thing: the loading animation doesn't appear at all. Also, when you scroll down, the original pagination links are visible…
mcography
  • 1,081
  • 6
  • 19
  • 36
1
vote
0 answers

Add loading.gif to Ratchet mobile framework

How to display a typical loading.gif animation before data-transition=slide-in starts with ratchet.js and hide after transition is completed? Thanks in advance