B4J Question ABMaterial - Chrome Issues

codie01

Active Member
Licensed User
Longtime User
Hi All,

In my ABMaterial app some of my users who have been using it through Chrome suddenly have to use incognito mode or they just get a spinning page loader in the browser. Any ideas of of what this might be, or any parts of my code you would like me to post up here to solve this problem.

Thanks Phil
 

alwaysbusy

Expert
Licensed User
Longtime User
use incognito mode
All this does is reload all the js/css/html files. All I can think of is that you uploaded e.g. a new version and their cache does not find the new updated files and is still looking at the old ones. I always use ABM.AppVersion = DateTime.now (in ABMApplication, Initialize) to ensure it will even reload on every restart of the the jar in the users browser. Never had a problem with it if I use this, and we have a lot of users.
 
Last edited:
Upvote 0

codie01

Active Member
Licensed User
Longtime User
All this does is reload all the js/css/html files. All I can think of is that you uploaded e.g. a new version and their cache does not find the new updated files and is still looking at the old ones. I always use ABM.AppVersion = DateTime.now (in ABMApplication, Initialize) to ensure it will even reload on every restart of the the jar in the users browser. Never had a problem with it if I use this, and we have a lot of users.

Thanks Alian, Worked great!
 
Upvote 0
Top