31.07.2020, 11:25
Hi
I have see th epobbility to change the page by custom script
But if i Need to cahneg page not for all change of 32/1/41 but only if increase is a number , is possible directly custo script or need make a event script , if I use event script , in wich way change page for ES.
BR,
I have see th epobbility to change the page by custom script
Code:
$(function(){
if (typeof objectStore !== 'undefined') {
var id = Scada.encodeGroupAddress('32/1/41');
objectStore.addListener(id, function(object, type) {
if (type == 'value') {
showPlan(55);
}
});
}
});
BR,