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
2 answers

StateHasChanged() does not reload page

Issue: As mentioned in Title, StateHasChanged does not re-render the page Objective: I want to Refresh the page when a button is clicked Current Code @functions { string…
Cornelis
  • 1,065
  • 8
  • 23
1
vote
1 answer

Redirect back two (2) pages in Laravel

I have an form on an edit screen and on submit I want to redirect back two pages. Is there a way to do this in Laravel? I haven't been able to find anything online. Thanks!
Alex Jolley
  • 11
  • 1
  • 2
1
vote
1 answer

How to auto refresh Power BI dataset after failure

I have scheduled query for a dataset in Power BI. In case of a refresh failure, I want Power BI to "retry" to refresh the data again, up to 5 times. Is there a way to do it?
user2671057
  • 1,411
  • 2
  • 25
  • 43
1
vote
1 answer

Upload file without page refresh

I have written a little jQuery in order to be able to upload a picture with no page refresh, but when I upload the picture, I must refresh the page in oder for the new image to appear. I am sure it is something wrong with my jQuery script: …
dana
  • 5,168
  • 20
  • 75
  • 116
1
vote
2 answers

Number of elements on cart refreshes only after page refresh Angular 8

I'm working on a simple shopping MEAN stack application. On the header component I have a cart with badge that shows number of elements on the user's cart,when I click on add to cart button (which is situated on my products component), the product…
1
vote
2 answers

How to find F5 pressed and page is reloaded in Angular 6

I would like to find if the browser is refreshed in app.component with out using router navigation . How to achieve this functionality
Nishanth
  • 361
  • 1
  • 6
  • 21
1
vote
2 answers

JFreeChart XY-chart that refreshes with new set of data? Example?

I want to learn how to learn how to create some charts with jfreechart and googlefor some examples. but I couldn't find what I need. This here is good http://www.java2s.com/Code/Java/Chart/CatalogChart.htm but doesn't have a refreshing graph with…
Andreas Hornig
  • 2,439
  • 5
  • 28
  • 36
1
vote
1 answer

Why do not working UIRefreshControl in Swift?

I use the refresh function in WKWebview. The function is normal when performing a refresh. But when I load another html file and come back, it is not refreshed. @IBOutlet var myWebView: WKWebView! var refController:UIRefreshControl =…
hong developer
  • 13,291
  • 4
  • 38
  • 68
1
vote
1 answer

(Java) Change swing components' text at runtime (resource bundles)

I'm setting the value of a JLabel with myLabel.setText( controller.getString("hello") ); where controller.getString returns the getString from a ResourceBundle instance. However, I'm trying to update the language of the application at runtime and…
1
vote
5 answers

React Router -- history push state not refreshing with new state object

When Promise.all resolves and the new activity is saved, the user should be routed to /activities to view their newly created activity. Everything works as expected, however I currently need to refresh /activities page (once) after being routed in…
BWeb303
  • 303
  • 6
  • 18
1
vote
2 answers

How to refresh a div in which php code is executing

a group images are calling in a div and there we have given an option to rotate images if required. Actually the image is rotating but it is not showing in the page( without doing 2 or 3 manual page refresh). I have added
merlin
  • 81
  • 1
  • 1
  • 6
1
vote
1 answer

How do I refresh singleton class object

I have a singleton class like below class A{ private volatile static A a; //declaration of LinkedHashMap private A(){ //lot of code that puts values in the map } public static A getInstance() { if (a== null) { synchronized…
JG1991
  • 143
  • 3
  • 14
1
vote
1 answer

What, if anything, replaced the EntityFramework Refresh method?

I have a product that used an old version of Entity Framework (don't know the version) that I have to update to EF6. In the older EF there used to be a method on an entity called Refresh to update the table contents. For…
Revtim
  • 11
  • 2
1
vote
0 answers

Spring: Using @Retryable and @RefreshScope to retry JMS Topic URL from config repo

I am trying to implement the annotations @RefreshScope and @Retryable in my code. I want them to work simultaneously but I am not sure if it is possible. Currently, @Retryable works as it is suppose to. If the method throws an exception, it will…
JCP
  • 169
  • 1
  • 7
1
vote
0 answers

Preventing User from accidentally quitting Shiny session

I'm new to Shiny and have no experience in web programming. I'm going to write a little shiny application which step-by-step receives new inputs from the user. Storing these values in a file would be inconvenient for the user, so this is not an…
Erin Sprünken
  • 400
  • 2
  • 13