Questions tagged [reload]

reloading is the process of re-requesting and re-rendering the currently displayed page

Reloading is the process of re-requesting and re-rendering the currently displayed page, triggered for example by JavaScript or the user. Use this tag to mark questions related to forcing the browser to reload or in context of bugs that occur specifically when reloading a page.

2765 questions
0
votes
1 answer

How do I change the URL parameters after reloading the page?

I need to change a url parameter after reloading the page. When I refresh the page, need to change that parameter's value. window.location.href = myUser + '?myuserid=' + myuserid + '&product=' + product + '&domain=' + domain + '&isPassed=' +…
Dulani Maheshi
  • 1,070
  • 1
  • 10
  • 30
0
votes
1 answer

React Native reload components after language change

How can I reload all components in the page because I need to navigate to another page and back to the same page to see everything updated , I tried to use react-native-restart but it didnt work. I need it to work on all platforms thanks for all :)
Naor
  • 11
  • 1
0
votes
0 answers

Window.reset() JavaScript

Can someone explain how window.reset works in Java script. I have a quiz with 5 part quizees. All of the part quizzes is built in 1 html page. So when you push NEXT Button the wrapper change Nd show the next quiz with the help of…
MVB
  • 45
  • 4
0
votes
2 answers

Data of redux store getting empty on reload

I am new to react and redux. I have 3 screens in my react js application. On First Screen, user input the id and that id get stored in redux store. On submit of first screen button API is called which take id as a parameter and bring the data. I…
Akshat Saxena
  • 11
  • 1
  • 4
0
votes
2 answers

Prevent reload page when click on button take you to the same page link?

I would like to prevent an HTML button that acts like a link take you to the same page from reload the page For Example: prevent reload the website when click on logo if you are in Homepage. How can I do this? Full code:…
Muh-Osman
  • 159
  • 1
  • 5
0
votes
1 answer

c# MVVM how to refresh datagrid itemsource in the ViewModel

I'm a beginner in C# and MVVM. I have a datagrid and and I try to use a button Command to refresh it. but It doesn't work. my XAML code
Maysa
  • 9
  • 2
0
votes
0 answers

Is there a "Reload changed classes" when debbugging a dart application?

Is there a "Reload changed classes" when debbugging a dart application? I mean the application runs in debug mode in the Dart VM, so there should be something similar to Java. I use IntelliJ IDEA for coding. With Java, I have the option.
Dominic
  • 70
  • 1
  • 7
0
votes
0 answers

How to force reload with firefox via javascript

My webpage reads the URL to load frames in it. For example: https://luis.impa.br/?=meteor loads the weather conditions of my city on the right frame. This is done through javascript that reads the URL with…
Luis A. Florit
  • 2,169
  • 1
  • 33
  • 58
0
votes
1 answer

remove selected class after get Ajax data and draw() DataTable

I'm trying to reload the selected row when user click on Edit button from database, but after reload the row and call table.row().data(response).draw(false);, remove selected class from the row. $.ajax({ type: callMethod, url: url + '/' +…
mehnet ali
  • 73
  • 3
  • 12
0
votes
0 answers

How do i fix The system cannot find the file specified

i have a lop of video file and rename them so they look better e.g "show name s01e01" rather than "showname.s01e01.ggeeewg.mp4" so i created a program that could do it quicker than doing it by hand. code below import os import fnmatch import…
Selene
  • 31
  • 6
0
votes
0 answers

How can I reload the same page(UI, view, viewmodel) in xamarin by clicking a button?

I have some input fields to enter details. At the mid of entering, I wish to erase all details before I save it if I click a button like "cancel". I used name reference (x:Name), the '.Text' property, and using Clicked property, but I am not able to…
0
votes
2 answers

How to refresh the page in navigating from one page to other page in angular

In my angular application I have some navigation pages with router. And my requirement is when it is navigating it has to reload the page. .component.ts if(ID == 0){ this.router.navigate(['./Profilepage/' + ID]); } …
user1
  • 63
  • 3
  • 11
0
votes
0 answers

Weird errors problem with dotnet watch with blazor/wasm

I have a really annoying problem with dotnet watch and blazor/wasm. I have a solution in which I have multplie projects, for example an API, a blazor/wasm project and some common classlibraries. I start the API part with CTRL+F5, and I start the…
TendenZ
  • 1
  • 1
0
votes
0 answers

Reload with setInterval stops reloading after a while

I have a code similar to this (shortened it for brevity): function reload() { location.reload(); } window.addEventListener('load', function () { foo(); setInterval(reload, 20 * 1000); }) This creates an indirect loop which works fine…
Nom1fan
  • 846
  • 2
  • 11
  • 27
0
votes
1 answer

JQuery Prototype bubbling with Ajax reload

I've got a button that displays "HI" when clicked. The button is in a div called "Panel1", which I'm using AJAX to update. After clicking for the first time, when Panel1 is reloaded, the button's click even does not fire anymore. I guess this has to…
Dinesh
  • 3
  • 1
1 2 3
99
100