Logic Machine Forum
refresh button on objects page not updating - Printable Version

+- Logic Machine Forum (https://forum.logicmachine.net)
+-- Forum: LogicMachine eco-system (https://forum.logicmachine.net/forumdisplay.php?fid=1)
+--- Forum: General (https://forum.logicmachine.net/forumdisplay.php?fid=2)
+--- Thread: refresh button on objects page not updating (/showthread.php?tid=214)



refresh button on objects page not updating - rocfusion - 09.02.2016

Hi,

I have created a scripts which use, grp.settags \ grp.removealltags to add and remove tags on objects.  In order to see this change you have to refresh the web browser.  I would expect that the refresh button at the bottom of objects page would do this.

Thanks,


Roger


RE: refresh button on objects page not updating - admin - 09.02.2016

Thanks, Roger. This bug will be fixed in next FW release. You will still have to do a manual refresh via button though, but not a full browser refresh.


RE: refresh button on objects page not updating - rocfusion - 09.02.2016

That would be great. Thanks.


RE: refresh button on objects page not updating - Habib - 07.12.2016

Hi,

it's possible to do something like <META HTTP-EQUIV="refresh" CONTENT="15"> in a visualisation page?

I use a spaceLYnk (Fw 1.2.1) with multiple ipads. After a while my iPads synch not everymore (I don't no why). One iPad shows the new status and other don't do this.
Energy savings and Screensaver are off. If we kill the "Home App" and turn it on back it's working normal.

Regards
Habib


RE: refresh button on objects page not updating - admin - 07.12.2016

You can this function to Custom JavaScript:
Code:
setTimeout(function() {
  window.location.reload();
}, 15 * 1000);



RE: refresh button on objects page not updating - Habib - 07.12.2016

Thx :-) It works great