31.05.2020, 07:39
(This post was last modified: 31.05.2020, 07:41 by Erwin van der Zwart.)
Hi,
Here is a custom JS to do that:
BR,
Erwin
Here is a custom JS to do that:
Code:
$(function(){
if (typeof grp != 'undefined') {
grp.listen('1/1/1', function(object, state) {
if (state == 'value') {
showPlan(object.value);
}
});
}
});
Erwin