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

Hiding rows based on cell value in different worksheet

I am using a VBA code to hide some rows based on a cell value: Private Sub Worksheet_Change(ByVal Target As Range) ActiveSheet.Activate If Not Application.Intersect(Range("K3"), Range(Target.Address)) Is Nothing Then Select Case…
Berendvv
  • 75
  • 8
1
vote
0 answers

changed index file, then I want search data to change in Solr

Please understand, I can't speak English very well. I have 3 servers. server1 make index file in NAS(Network Attached Storage), others two server used only search. and I use simple locktype in the solrconfig.xml.…
1
vote
1 answer

Refresh on views

I'm trying to refresh my views when I go from one to another. I know I should place the refresh code in viewWillAppear but I don't know what code to put. Could you guys assist me? Thanks!
K.Honda
  • 3,106
  • 5
  • 26
  • 37
1
vote
1 answer

Refreshing the grid after adding rows by code

I'm new to slickgrid. I have a problem with refreshing the grid : just a table with 2 columns "id" and "value". the grid is populated behind the scene like this : cpt ++ ; var d = [{ id: "item" + cpt, value: "val" + cpt }, ]; …
zalath
  • 576
  • 1
  • 8
  • 9
1
vote
1 answer

window.location.reload(true) only works in real browsers, not VB.net WebBrowser Control

I have a button on my webpage that runs some javascript code: alert("Will refresh now"); window.location.reload(true); It works in all the browsers we've tested it in. But when I display that webpage inside my vb.net executable (in a WebBrowser…
Margie
  • 41
  • 4
1
vote
2 answers

Chrome keeps caching my old page until I hit the refresh button but come back next visit or few days later

I am experiencing this weird issue where my Chrome browser keeps loading a old version of my website whose code doesn't even exist on my server any more. I assume it's a typical cache issue. I needed to hard refresh the browser cache to make it…
1
vote
1 answer

Not able to reload page by using Refresh Indicator in my flutter project

> i am making a app that uses http get request to fetch data from server i want to be able to refresh page by using refresh indicator widget whose refresh method calls my get request every time Future fetch() async { const url…
1
vote
1 answer

Selenium Click JS Button - Python?

yeah, there are similar question, but upon reading through them I weren't able to find a solution for my problem. Following situation: I'm tryin to click the "reply" button on…
J. Doe
  • 61
  • 1
  • 2
  • 9
1
vote
2 answers

How facebook, twitter reload their page without any refresh?

I am so much curious about this technology, I want to know how Facebook, Twitter, and many websites reload their page after clicking on a link without any refreshing? I search about this on google but did not find any helpful information, In this…
user12889738
1
vote
1 answer

How to refresh my simulation to its beginning?

I created a coronavirus simulation and I wanted to refresh everything to the beginning each time I click the screen. I would greatly appreciate your help if you could help me. Thank you! My code: x= [ ] y= [ ] h= [False, True] #False=>…
Upchanges
  • 310
  • 2
  • 14
1
vote
1 answer

how to refresh the linear layout view after deleting an element

I have a simple app, in one activity I take name and date of birth. I store it in the database. and in the main activity I have linearlayout which will show all the names. When I click on any of the name in the main activity, it should delete that…
Vijay Nag
  • 257
  • 2
  • 9
  • 21
1
vote
1 answer

Visual Studio 2019 intellisense not finding new class, refresh

I've been having a problem with Intellisense in Asp.Net Core and Blazor for months where it won't recognize a newly created class. I've read all the other answers about changing settings, Ctrl-J, and removing .vs folder, but none resolved the…
1
vote
3 answers

Content of element doesn't refresh after onBlur action

I try to edit content of an select input when text entered to a textbox by using jQuery. This is my TextBox and this…
brsbilgic
  • 11,613
  • 16
  • 64
  • 94
1
vote
1 answer

Referer Redirect in a POST call in symfony 4 using URL with annotations comments Routes

In version symfony 4, I am trying to resolve a redirect in a action done before with a parameter. I Have annotations Routes. The problem is it is a POST call and I do not know how convert the URL $request->headers->get('referer') in a action_name…
1
vote
0 answers

VBA charts not refreshing with refresh.all or if I loop through the charts

Hello I am trying to write a script that will call a function to refresh charts every 30 seconds. The first function provided works by simply telling the machine to run my other function "RefreshCharts" after 30 seconds. The problem I am having in…