05.07.2019, 17:10
(This post was last modified: 05.07.2019, 17:11 by Erwin van der Zwart.)
Hi,
Yes you can do that with custom JS (in this sample by bit object with address 1/1/1) and used in a iframe:
BR,
Erwin
Yes you can do that with custom JS (in this sample by bit object with address 1/1/1) and used in a iframe:
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);
}
});
});
});
Erwin