19.11.2020, 15:54 
		
	
	
		Hi
In this code for page change
 is it possible to execute the action only when the value is increased?
	
	
	
	
In this code for page change
Code:
$(function(){
  if (typeof objectStore !== 'undefined') {
    var id = Scada.encodeGroupAddress('32/1/50');
    objectStore.addListener(id, function(object, type) {
      if (type == 'value') {
        showPlan(216);
      }
    });
  }
});