I hope someone can help me: I recently noticed that my garagedoor open alert no longer works: the block used to blink when the garagedoor was openen but now only shows a faint steady red color. The sensor works in Domoticz, no problem there. The status of the device in the block also changes accordingly, it's only the blinking that doesn't work. I've used the code from the Dashticz manual but will repeat it here:
// Garagedoor open warning: see class warning in custom.css
function getStatus_273(block, afterupdate){
debugger;
var idx = block.idx;
var device = block.device;
if(device['Data']=='Open'){
block.addClass='warning';
}
else {
block.addClass='';
}
}