29.11.2017, 19:08
(This post was last modified: 29.11.2017, 19:09 by Erwin van der Zwart.)
Hi,
Do you have the alert manager in a frame inside the pc/tablet visu? If yes you can use this custom Javascript:
BR,
Erwin
Do you have the alert manager in a frame inside the pc/tablet visu? If yes you can use this custom Javascript:
Code:
$(function(){
$(document).ready(function() {
var f= $('iframe');
f.load(function(){
if (typeof grp != 'undefined') {
grp.listen('1/0/9', function(object, state) {
if (state == 'value' && object.value == true ){
f.contents().find('#AcknowledgeButton').click();
}
}, true);
}
});
});
});
Erwin