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.
Questions tagged [refresh]
5342 questions
1
vote
1 answer
Changing from Google Geocoiding to Mapbox Places API in Angular 2
I am working on a web app that geocodes a point when clicked on a map.
The app was written in Angular 2. I am unfortunately not familiar with Angular.
Currently the app geocodes with Google and the text box automatically updates when the result is…

08Dc91wk
- 4,254
- 8
- 34
- 67
1
vote
0 answers
Is there an R function for refreshing a datafile or dataframe to pick up recently updated data automatically?
I have a csv file where data is getting generated for every 15 mins. I need R programming to use reactivefilereader function to identify latest data feed and update automatically.
But what is the problem with the code below ?
library(readr)
housing…

Mr.KT
- 23
- 6
1
vote
2 answers
Refresh Button UWP
I want to add a refresh button to my app so that I don't always have to quit the app to clear the data.
I have tried a RefreshRequested, but I can't make it work.
C# code:
private void RefreshButtonClick(object sender, RoutedEventArgs e)
{
…

Tomas
- 13
- 4
1
vote
1 answer
Flutter Question: How do I reload the state of just one element in a list using a StreamBuilder
I'm using a Streambuilder to a Firestore instance stream to fetch some "Appointments" which I later modify (delete / add / update).
Problem is that each time I modify the date on one, each item reloads (because the StreamBuilder builds a list of the…

Mike Steaks
- 11
- 3
1
vote
1 answer
Refresh an listView after insert on database
I want to refresh the listView after an insert or delete in the database.. I search and i found notifyDataSetChanged () but i don't know how to use it..
Someone can explain how to do this? Even by a different way..

jpmd
- 247
- 1
- 7
- 19
1
vote
2 answers
How to Refresh fragment from another activity?
My Problem is:
I have 3 classes:
MainActivity.java
ContactFragment.java
AddNewContactActivity.java
In MainActivity, it's content ContactFragment. From MainActivity, I click on Add Button to go to AddNewContactActivity
I want When I click on Save…

Jason Momoa
- 123
- 8
1
vote
1 answer
Refreshing problems with opencv using threads
I'm using two threads:
thread 1 is the the one that takes the frames from the camera and process them
thread 2 is the one that displays them using cvshowimage
In the second thread I'm using cvWaitKey(200); (i tried also other values..)
The problem…

nanz
- 11
- 3
1
vote
3 answers
How to refresh a page and load at top after an anchor has been clicked, ignoring the anchor, and resetting back to the top?
I have a page with a few anchors. When a user clicks an anchor, the anchors work, and user is taken to the correct location.
If a user tries to refresh the page, it retains the anchor ID in the URL window and so naturally, when refreshing, it does…

Xenokitten
- 11
- 5
1
vote
2 answers
Xamarin.Forms listview not updating in Android
After searching every forum online I decided to post my own question: My listview data is shown correctly in IOS but not in Android. I'm binding to a property in my view model and that looks correct but I can't figure out what I'm missing (I'm…

lsuarez9
- 11
- 2
1
vote
2 answers
Vue2 Element-UI Datepicker force refresh for dynamic disabledDate
In the codepen below I have a Element-UI datepicker set up to show a dynamic disabled dates based on a random number.
The number of disabled dates change every time the datepicker input comes into focus.
My issue is the datepicker doesn't refresh…

Steve Shore
- 21
- 1
- 6
1
vote
2 answers
Refreshing page upon successful sql command
I am working on a script that is responsible for refreshing the page after a successful update. I am using the GET method in order to pass information. I have a button called "read" which when clicked will update my database and is responsible for…

sai peri
- 53
- 7
1
vote
1 answer
Code igniter on IE, in a facebook application and my refreshing woes
I've got a FB app (PHP/codeigniter).. works great.. woo.
However, in IE, it refreshes and refreshes over and over.
Chrome and the Fox are fine.
I'll include my connection class below, but basically, my FB app points to this, it does it's magic and…

Beertastic
- 691
- 1
- 9
- 27
1
vote
1 answer
How to make a script that press a button scheduled time on a website(like pg down or space)?
I stream on youtube and I have OBS Studio which has a built-in browser.
I would like to know what is a suitable code if I want to have a pressed space button in every 20 seconds on that website automatically?

LordY
- 31
- 3
1
vote
2 answers
How do I scrape data from a web page that refreshes after submitting data via selenium and python?
I'm developing a geolocation web-scraper with python and selenium. When I enter data in this website, the page refreshes (with the same URL) and when I try to get the data from the latitude and longitude input it prints nothing.
Here's the sample…

Nacho Ordinary Cheese
- 15
- 1
- 6
1
vote
1 answer
How to refresh the date in Angular 4
Please how can I refresh a date in angular 4
I need to display dynamically the date in the web page.
This is my code:
import { Component } from '@angular/core';
import * as moment from "moment";
@Component({
selector: 'app-root',
…

sr123
- 85
- 1
- 11