06.05.2025, 05:53
(This post was last modified: 06.05.2025, 05:54 by Erwin van der Zwart.)
Can you try the grp.listen method? Just tried this on the latest FW and works for me..
Code:
$(function(){
if (typeof grp != 'undefined') {
grp.listen('1/0/10', function(object, state) {
if (state == 'value') {
if (object.value == true) {
$(".disabledbyknx").css("opacity", 0.5);
$(".disabledbyknx").css("pointer-events", 'none');
} else {
$(".disabledbyknx").css("opacity", 1);
$(".disabledbyknx").css("pointer-events", 'all');
}
}
}, true);
}
});