--- a/svghmi/widget_dropdown.ysl2 Mon Aug 03 16:32:23 2020 +0200
+++ b/svghmi/widget_dropdown.ysl2 Mon Aug 03 16:34:44 2020 +0200
@@ -38,9 +38,7 @@
// Called when a menu entry is clicked
on_selection_click: function(selection) {
- let orig = this.indexes[0];
- let idx = this.offset ? orig - this.offset : orig;
- apply_hmi_value(idx, selection);
+ apply_hmi_value(this.get_idx(0), selection); on_button_click: function() {
--- a/svghmi/widget_input.ysl2 Mon Aug 03 16:32:23 2020 +0200
+++ b/svghmi/widget_input.ysl2 Mon Aug 03 16:34:44 2020 +0200
@@ -26,9 +26,7 @@
| on_op_click: function(opstr) {
- | let orig = this.indexes[0];
- | let idx = this.offset ? orig - this.offset : orig;
- | let new_val = change_hmi_value(idx, opstr);
+ | let new_val = change_hmi_value(this.get_idx(0), opstr); // | this.value_elt.textContent = String(new_val);
// /* TODO gray out value until refreshed */
@@ -39,9 +37,7 @@
| edit_callback: function(new_val) {
- | let orig = this.indexes[0];
- | let idx = this.offset ? orig - this.offset : orig;
- | apply_hmi_value(idx, new_val);
+ | apply_hmi_value(this.get_idx(0), new_val); // | this.value_elt.textContent = String(new_val);
// /* TODO gray out value until refreshed */
--- a/svghmi/widgets_common.ysl2 Mon Aug 03 16:32:23 2020 +0200
+++ b/svghmi/widgets_common.ysl2 Mon Aug 03 16:34:44 2020 +0200
@@ -105,6 +105,10 @@
+ let orig = this.indexes[index]; + return this.offset ? orig + this.offset : orig;