Questions tagged [refresh]

The periodic energizing required to maintain the contents of computer memory, screen, etc. It can refer also to the update of a display to show the latest version of the data.

Source: http://en.wiktionary.org/wiki/refresh

5342 questions
1
vote
1 answer

Codeigniter URL problem! Hitting refresh causes functions to be executed!

Possible Duplicate: How to access a variable in a PHP class that is set by another function? Codeigniter I have a controller called submit: Basically it does two things of concern: validate_form() - It validates a form -> then submits…
sqlmole
  • 997
  • 7
  • 17
  • 31
1
vote
1 answer

Refresh a widget on button press kivy

I have a kivy widget thats value updates during runtime which also change the number of labels and buttons in it since I build it in a for loop in python. I call a method inside the init class to get the data needed to build it at start. However I…
1
vote
0 answers

Python print with flush won't refresh firefox page (edge works)

I have a problem with a simple python script which triggers a jenkins job and returns intermediate results while the jenkins job is running. The script sleeps, checks jenkins again and prints some info to a web browser output. This generally works…
Cpt Koko
  • 33
  • 5
1
vote
1 answer

WCF RIA : LoadOperation Not Refreshing Data

I have the following code: LoadOperation ClarificationsLP = context.Load(context.GetClearificationsQuery().Where(o => o.ProjectID == ((App)Application.Current).Project.ProjectID).OrderBy(o => o.RaisedOn)); ClearificationsLP.Completed…
1
vote
1 answer

Google Sheets query output changes upon closing and reopening workbook

I have a workbook where I track game stats for my local community. I added a chart that changes upon a few selections and I use filter to get the desired result. The data comes from a sheet where I use query to calculate month to month differences…
user75667
  • 11
  • 1
1
vote
1 answer

Is silent_redirect_uri obsolete when using grant type Code

I have a question about refresh access tokens. I am using IdentityServer 4.1.2 with the following configuration: new Client { ClientId = "myid", AllowedGrantTypes = GrantTypes.Code, RequireClientSecret = false, AccessTokenLifetime = 3600, …
1
vote
1 answer

How do I prevent my page from refreshing on submit

Here is the JavaScript: myform.addEventListener('submit', (event) => { fetch("url", {mode: "no-cors"}) .then(res=> { if(res.ok){ console.log("cats") } else{ event.preventDefault() …
1
vote
3 answers

How I would be able to read my JSON file every time it's updated without refreshing the web page

I have a server that consistently updates a JSON file. Tho the code I setup bellow (javascript) reads the JSON file and shows it to the client always refreshes the page. I would like to know how I would be able to read my JSON file every time it's…
Leonardo
  • 21
  • 1
1
vote
1 answer

Reload after deleting user from end of list with React

Using React.Js When trying to delete users from the end of the list the deleted users are replaced by the last item in the list. Only on page refresh do the deleted users actually go away and the user list updates. The back-end is work because I can…
Sarah
  • 11
  • 1
  • 4
1
vote
1 answer

How to use background refresh at specific Time of a day in iOS?

I know how to use background refresh and methods to get data after some time interval. Is there any possibility so that I can refresh data in 1hr of range in morning time? even if app will not open every day once. Can I update background refresh…
KrishnDip
  • 81
  • 10
1
vote
0 answers

Tampermonkey script - Refresh needed

I'm trying to create a simple script to autoclick a buy button as soon as the browser goes from the cart page to the checkout page. The script doesn't work unless I manually refresh the checkout page. It appears the site uses AJAX. I started with…
tricco
  • 11
  • 1
1
vote
1 answer

Input fields are not getting cleared on refresh

I created a simple calculator using PHP. Now when I load it for the first time, all the input fields are empty. Once I type in input fields and then submit, It shows the output. Now, on refreshing the page, the page remains the same. I want the page…
1
vote
1 answer

Sorting second level of TreeView and seeing changes... possible?

this is my first post here, I have been trying a few techniques found in other questions but just can't seem to get this working like I want... I am making changes to an existing application (.net 3.5 with WPF and C#, and Entity Framework with…
NDUF
  • 687
  • 6
  • 14
1
vote
2 answers

Video source doesn't update on useState()

import React, { useState, useEffect } from 'react'; import rainClip from '../videos/rain.mp4'; import sunnyClip from '../videos/sunny.mp4'; import dullClip from '../videos/cloudy_black.mp4' import '../App.css' export default function Background({…
danil51608
  • 39
  • 5
1
vote
1 answer

Error 404 when you refresh a Next.js page

I am getting this error whenever I try to refresh a routed page in my small Next.js app.
GeniusHawlah
  • 472
  • 5
  • 17