15.11.2019, 16:21
(This post was last modified: 15.11.2019, 23:41 by Erwin van der Zwart.)
Hi,
Yes that is possible, add this to your custom JS (you have to refresh browser once to make it active)
BR,
Erwin
Yes that is possible, add this to your custom JS (you have to refresh browser once to make it active)
Code:
$(function(){
if (typeof grp != 'undefined') {
grp.listen('1/1/1', function(object, state) {
var value = object.value;
if (state == 'value') {
if (value == true) {
location.reload(true);
}
}
});
}
});
Erwin