03.06.2024, 11:05
It's only possible when the alert manager is loaded into an frame in the visu by using this custom JS:
Code:
$(function(){
$(document).ready(function() {
var f= $('iframe');
f.load(function(){
if (typeof grp != 'undefined') {
grp.listen('1/1/1', function(object, state) {
if (state == 'value' && object.value == true ){
f.contents().find('#AcknowledgeButton').click();
}
}, true);
}
});
});
});