Hi,
I do re-load the page by using the following code
This is reloading the page, but it is still reading from the Cache hence the charts/graphs are not refreshed with the new values. Here are the log entries that are generated when I call ABMShared.NavigateToPage(ws,"" ,"./")
Whereas if I refresh the page using the reload button available in the Chrome, then the contents (Charts) are refreshed with the new values.
Now my question is : Is there any way to avoid the cache willingly when I call
I did not find any other methods like page.reload. I even tried page.row(1).Refresh but no result.
I do re-load the page by using the following code
B4X:
ABMShared.NavigateToPage(ws,"" ,"./")
This is reloading the page, but it is still reading from the Cache hence the charts/graphs are not refreshed with the new values. Here are the log entries that are generated when I call ABMShared.NavigateToPage(ws,"" ,"./")
B4X:
Disconnected
Inside Build page
Connected
Waiting for value (7 ms)
UpdateFromCache: TargetService36deaf6d-2872-4012-95c0-b52da9f65fe2
Reading from cache
Comes from cache
Waiting for value (8 ms)
TargetService36deaf6d-2872-4012-95c0-b52da9f65fe2
Whereas if I refresh the page using the reload button available in the Chrome, then the contents (Charts) are refreshed with the new values.
Now my question is : Is there any way to avoid the cache willingly when I call
B4X:
ABMShared.NavigateToPage(ws,"" ,"./")
I did not find any other methods like page.reload. I even tried page.row(1).Refresh but no result.