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

Angular stop component from running after it has been clicked off of

Currently, I have a sidebar that allows me to click on individual components. These components refresh API calls to get data. However, when I click off the components to another component, the old component keeps on refreshing API data, even though…
GolfBravo
  • 837
  • 2
  • 12
  • 23
1
vote
2 answers

MeteorJS form submission is refreshing the page with event.preventDefault() enabled

The dating application is built with MeteorJS and the page refreshes whenever I attempt to submit this form to register a user. Also, Meteor.user().services.twitter.profile_image_url doesn't seem to get Twitter image. Please…
1
vote
1 answer

PHP order search - on adding item to order refreshes page, how to apply old search query?

I am creating a simple search feature that queries a user input string for a matches in a products catalog that is held within a table in mysql. This is my code for this search form:
Craig van Tonder
  • 7,497
  • 18
  • 64
  • 109
1
vote
0 answers

How do I get the last refresh date/time from a query?

I have a workbook with a multiple queries from an SQL database and wanted to get the last refreshed date/time as either a variable in VBA or written to a cell in the workbook. I tried this code: Cells(1,1) = ActiveWorkbook.Connections("Query -…
1
vote
2 answers

React Query only display on tab refresh

I find myself in a bit of a pickle and can't seem to find an answer on Google. I'm trying to use the React query library with TSX and display the returning data in a simple list. However it seems that the fetchng and displaying is done only by…
Red_system
  • 11
  • 1
1
vote
2 answers

Python - Refresh page until Element is clickable

I'm trying to create this bot that will refresh the page until an element is visible. My problem is that the bot isn't refreshing and I can't seem to figure out why:) EDIT: The bot refreshes the desired page now until the desired elememt is visible,…
1
vote
1 answer

method for move window

I want do something like that: I have form with pictures, when I click on ones, I want to display new window with this picture (it must be only picture, without some toolbox or border). Continuing I want to be able move this window (when I press…
nirmus
  • 4,913
  • 9
  • 31
  • 50
1
vote
0 answers

I have deployed my react single page site to firebase and getting this error of not found 404 after refresh at any page

This file does not exist and there was no index.html found in the current directory or 404.html in the root directory. You may have deployed the wrong directory for your application. Check your firebase.json and make sure the public directory is…
1
vote
1 answer

jQuery Reload live Page and Stop?

I am checking to see if a url contains the word "rewrite", if it does I am adding a cookie. However, I want to reload the page after the cookie is added, then stop reloading the page. Currently it keeps reloading the page because it sees the url…
ToddN
  • 2,901
  • 14
  • 56
  • 96
1
vote
3 answers

listener on tab click or activation not working properly / extjs4

I am developing an application with extjs4 and c#, it is based on the browser-layout example. I have a menu on the left side, where you can click each item of that menu. On the right side I have all of my tabs. The event listener I'm using on the…
Armance
  • 5,350
  • 14
  • 57
  • 80
1
vote
2 answers

Delphi: Is webbrowser focused / or get the webbrowsers real Handle

I want to disable the F5 on Webbrowser. For this I can use Application.OnMessage. But I want to force this rule when the WB focused. But every kind are failed: 1.) Get the HWND of the WB - to compare the Msg.hwnd 2.) Get the focused state of the WB,…
durumdara
  • 3,411
  • 4
  • 43
  • 71
1
vote
3 answers

How to Refresh Python Script Once in Awhile?

So I've created a class, which contains GUI using wxPython. How do you make it so that it refreshes itself say every minute?
jewz
  • 71
  • 1
  • 1
  • 3
1
vote
0 answers

Is there a way to (i) automatically refresh a url and (2) scroll-down to the end?

My ideal goal is a modified version of this chrome extension I want to keep a window always open on a website, and that window is supposed to refresh and bring me at the bottom of the page, continuously (until I stop/close). How do you suggest to…
1
vote
1 answer

Refreshing picture in drawingPanel extends JPanel

I have to load a small icon on the botton of my software. just to have a loading/ok/error icon. as sudgested on "http://www.particle.kth.se/~lindsey/JavaCourse/Book/Part1/Java/Chapter06/images.html" i create a dwowing panel extending JPanel. class…
Stefano
  • 3,981
  • 8
  • 36
  • 66
1
vote
3 answers

PyWebIO button to refresh the page

so I am making a small app, which searches the web via keyword in PyWebIO input() function and then shows results in put_table() and after the results are ready I need to start another search and instead of updating the page with F5 or browser, I…