Questions tagged [browser-refresh]

86 questions
1
vote
1 answer

nmp install -g under Windows 10, not recognized as a command

While logged in to Windows 10 as a User, and opened the command prompt as an Adminstrator, cd to my nodeJs project directory and did npm install browser-refresh -g in order to install the browser-refresh package from the npm which went ok but with…
Fred J.
  • 5,759
  • 10
  • 57
  • 106
1
vote
2 answers

In my react app, url updates but the page does not redirect until browser refresh

I need Help. Can someone please let me know what is the prople here, whenever i press button on side navigation that is 'Routes" the page address in url changes but the page does not load until i refresh from browser. I did whatever i can. Also my…
1
vote
0 answers

some background Images not shown on page refresh (F5)

When I refresh the login page some of the background images are not visible. Sometimes it happens to none, and sometimes to 1, 3 or more. When I click on the link to load the login page or directly type in the login url, all background images are…
CrashaLot
  • 11
  • 2
1
vote
1 answer

How to reload browser from code in Odoo 10

I created a button(Edit) in sale order line and when i am using this button then values returns in sale order form. Process is going well, but problem is that changes reflected after browser reload( Either F5 or UI). And i want this browser reload…
Pawan Kumar Sharma
  • 1,168
  • 8
  • 30
1
vote
2 answers

morgan skip not working

Building an express app with morgan 1.9.0 and browser-refresh 1.7.2. Morgan seems to be ignoring the skip option. My app is initialized with const skipFcn = (req, res) => req.path.startsWith('/static/views') app.use((req, res, next) => { …
brandones
  • 1,847
  • 2
  • 18
  • 36
1
vote
1 answer

JavaScript equivalent of hitting the browser refresh button

I am adding functionality to a legacy web application such that in certain circumstances we will log the user off, returning them to a logon page that is separate to our application. The application is part classic ASP, part ASP.NET and uses an…
Richard Ev
  • 52,939
  • 59
  • 191
  • 278
1
vote
0 answers

Refresh a page only when the browser is not minimized and the tab is active

Could you tell me how to do an autorefresh (every minute) on a page. The refresh should only occur when the browser is not minimized and the tab is active. When the browser is restored(unminimized) do a refresh, if the page with the refresh is…
TheBoubou
  • 19,487
  • 54
  • 148
  • 236
1
vote
1 answer

Controlled hyperlink hijaxing

I am working on a web application. I have a data grid with a 'commands' column that has hyperlinks for some common CRUD operations (Edit, Delete, etc). When a user clicks on say the Edit hyperlink, I retrieve the unique identifier for the data grid…
Izmoto
  • 1,939
  • 2
  • 17
  • 21
1
vote
2 answers

Is there a way to know if a Vaadin UI has been refreshed (F5 reload) when it is not @PreservedOnRefresh

just a question about Vaadin, I searched a lot, without finding a useful information. I need to know whether a UI has been refreshed when it has NOT @PreserveOnRefresh annotation set (meaning that overriding UI.refresh() will not work for…
tonix
  • 6,671
  • 13
  • 75
  • 136
1
vote
1 answer

jquery slider breaks on page refresh

I have a jquery content slider on a site I'm developing. I am having a strange problem that seems to be across all browsers and that is the slider slides the wrong distance if the page is refreshed via the refresh button. To re-create the problem…
Nik
  • 671
  • 1
  • 8
  • 27
1
vote
1 answer

Keep selected value of drop down list after page refresh

I have a button to filter a list based on the selections from several drop-down values. However I am running into an issue whereby once the button is clicked, the page refreshes and the drop-down values are reset to the default. How could I ensure…
user3148224
  • 11
  • 1
  • 1
  • 2
1
vote
2 answers

Updating Dynamic HTML file

I have an application where the application's user relates to an HTML page during the application's runtime. During runtime, the HTML file is being continuously updated. In order to handle every update, the HTML file is being refreshed at a fixed…
brandbir
  • 305
  • 3
  • 14
1
vote
1 answer

ADF Essentials in Glassfish: AUTOSUBMIT and VALUECHANGELISTENER attribute makes a message appear in the Web Browser

I have a ADF project in Jdeveloper 11.1.2.4.0, one of my pages contains this:
1
vote
2 answers

Wordpress - How refresh page after updating a DB

I’m trying to make a plugin to a slider I already made an admin panel, and I can update the db, but I've a problem after I put the new data and press update - its updates the db, but it is not shown on the page. I need to refresh the admin page, and…
DUKEiLL
  • 199
  • 2
  • 6
  • 17
1
vote
3 answers

refreshing a page on jquery mobile

I am making a dynamic list in jquery mobile, based on a JSON file in my local storage (not a PHP file, just local storage) the list gets rebuilt every time you go to that page based on items that were removed or added to it, it is all in jquery…