svghmi/widget_input.ysl2
branchsvghmi
changeset 3100 c51f9cf365c6
parent 3094 3e184f1e1012
child 3101 4cbf024a6640
--- a/svghmi/widget_input.ysl2	Tue Dec 29 15:35:39 2020 +0100
+++ b/svghmi/widget_input.ysl2	Tue Dec 29 15:37:41 2020 +0100
@@ -9,6 +9,18 @@
          edit_callback(new_val) {
              this.apply_hmi_value(0, new_val);
          }
+
+         overshot(new_val, max) {
+             this.last_display = "max: "+max;
+             this.request_animate();
+         }
+
+         undershot(new_val, min) {
+             this.last_display = "min: "+min;
+             this.request_animate();
+         }
+
+
     }
 ||
 }
@@ -35,10 +47,17 @@
     if "$have_edit"
     |         this.last_val = value;
 
-    if "$have_value"
-    |         this.value_elt.textContent = String(value);
+    if "$have_value" {
+    |         this.last_display = value;
+    |         this.request_animate();
+    }
+    |     },
 
+    if "$have_value" {
+    |     animate: function(){
+    |         this.value_elt.textContent = String(this.last_display);
     |     },
+    }
 
     |     init: function() {