Questions tagged [reloading]
99 questions
1
vote
4 answers
Reloading javascript and CSS, best practices: PHP
This is more of a best practices question, but it's very important to me because it caused me many times to think that my js or css modifications weren't working.
I work with PHP and have my CSS and JS in separate files. Sometimes when I hit the…

Chris
- 8,736
- 18
- 49
- 56
1
vote
2 answers
dynamically loading classes from a ImageJ plugin
I am having problems dynamically loading a java class from a dynamically loaded class.
My class is an ImageJ plugin and it loads other modules dynamically through classloader. I have NoClassDefFoundError when loading the module that references to…

Rasael
- 66
- 6
1
vote
1 answer
Commons-configuration and DefaultConfigurationBuilder don't reload automatically
I've got a DefaultConfigurationBuilder (from commons-configuration v1.9). This object (named config) is initialized by this very simple file :

jmcollin92
- 2,896
- 6
- 27
- 49
1
vote
2 answers
Grails not reloading in test environment
I'm testing my app in the interactive console, which I access by 'grails-debug test'.
Then I run my integration tests 'test-app integration:' which goes fine.
But when I change any of my controllers that are being tested, the change does not take…

Tomas Romero
- 8,418
- 11
- 50
- 72
1
vote
1 answer
Why doesn't Ruby include built-in class reloading?
It seems like a common problem in Ruby applications in typical long-running process environments such as the rails server, that class-reloading to ease development pain is a difficult, but important problem to solve.
It strikes me that the language…

Lee Hambley
- 6,270
- 5
- 49
- 81
1
vote
0 answers
Android ListView - Loading new items without reloading the old ones - like in Gmail or Google Play
I've got one issue with otherwise nice working ListView.
I want to load new items into the existing listView, just like in Gmail or Google Play app - I show like 15 items and when the user clicks Load next, the other 15 will be loaded, so we will…

Hawk
- 392
- 4
- 24
0
votes
1 answer
Preventing parent page reloading when exiting modal
I have a form that has a popup when a certain button is pressed on the page. If i filled in the form, but have not submitted it for posting yet and I press the popup button, when i go to exit the modal the form that I had filled in goes blank. I…

acmisiti
- 425
- 1
- 4
- 17
0
votes
1 answer
Python and Qt - function reloading
i have an application class inherited from QtGui.QDialog.
I have to reload show-function but save functionality. I take this idea from C#.
There i could do something like this:
static void show()
{
// My code...
base.show();
}
I want to do…

Max Frai
- 61,946
- 78
- 197
- 306
0
votes
1 answer
How to refresh gridview without reloading whole page in ASP.net C#
I have a user control in which there is a gridview and a button that is used to insert data, I want to update the grid view after the submission of the data without reloading the whole page.
This is my user control's gridview code.
0
votes
3 answers
window.open() Preventing the rest of the function running
PROBLEM
I have a function which first sends users to a new page and then renders information on it. The Issue is that using "window.Open()" reloads the page and prevents the rest of the function from running
Intended Behaviour
"window.open()" will…

Ninad Bhide
- 11
- 2
0
votes
1 answer
Reloading but keeping the sessions
I have made a simple Student Management system using php, JavaScript and CSS.
I want to be able to reload the php pages within my system but keep the php sessions that I have set.
Any Solutions?
Here is a snippet of code from a php page.
I made a…
0
votes
0 answers
Run code without need to stop and re-run it (Telegram Bot)
I have a telegram bot and I need to update it without stopping it.
Something like uvicorn when we were running an app.
( uvirorn filename:appname --reload )
I need such a thing for pyrogram.
from pyrogram import Client
app =…

S. Jacson
- 33
- 6
0
votes
0 answers
Grails 2.4.5 Architectural question: What's the best way to notify front-end about changes from the back-end in a REST architecture?
I have a Grails 2.4.5 application that was monolithic, with back-end and front-end combined and using GSP,session and making a call every 5 seconds to a controller tracking changes through ehcache hash and updating the only the changed element.
The…

Axel Kouassi
- 11
- 6
0
votes
0 answers
How does live-reloading work in the face of random applications writing to a file?
Some of my users requested me a feature to implement live-reload of data files in my app - e.g. they'll edit a file, say foo.txt in some editor, and my app which also uses the content of foo.txt reloads it when it detects the change, by checking…

Jean-Michaël Celerier
- 7,412
- 3
- 54
- 75
0
votes
0 answers
Page not found error when refresh page after deployed react app to IIS server
I deploy a React app to IIS and it works well but when I press F5 to reload the page, it shows 404 error page.
I have created a web.config file to root folder in server
Is there anyone can help me so I can reload the page after deployed to IIS…

DA0405
- 1