--- a/svghmi/gen_index_xhtml.xslt Fri Feb 19 10:04:36 2021 +0100
+++ b/svghmi/gen_index_xhtml.xslt Sun Feb 21 21:38:44 2021 +0100
@@ -4452,16 +4452,12 @@
<xsl:text> dispatch: function(value) {
- <xsl:if test="$have_edit">
- <xsl:text> this.last_val = value;
- <xsl:if test="$have_value">
+ <xsl:if test="$have_value or $have_edit"> <xsl:when test="count(arg) = 1">
<xsl:text> this.last_display = vsprintf("</xsl:text>
<xsl:value-of select="arg[1]/@value"/>
@@ -4469,6 +4465,8 @@
+ <xsl:if test="$have_value"> <xsl:text> this.request_animate();
@@ -4489,7 +4487,7 @@
<xsl:value-of select="path/@value"/>
<xsl:text>", "</xsl:text>
<xsl:value-of select="path/@type"/>
- <xsl:text>", this, this.last_val);
+ <xsl:text>", this, this.last_display); <xsl:if test="$have_value">
<xsl:text> this.value_elt.style.pointerEvents = "none";
--- a/svghmi/widget_input.ysl2 Fri Feb 19 10:04:36 2021 +0100
+++ b/svghmi/widget_input.ysl2 Sun Feb 21 21:38:44 2021 +0100
@@ -41,18 +41,18 @@
| dispatch: function(value) {
- | this.last_val = value;
+ if "$have_value or $have_edit" { - | this.last_display = vsprintf("«arg[1]/@value»", value);
+ | this.last_display = vsprintf("«arg[1]/@value»", [value]); | this.last_display = value;
| this.request_animate();
@@ -66,7 +66,7 @@
- | this.edit_elt.onclick = () => edit_value("«path/@value»", "«path/@type»", this, this.last_val);
+ | this.edit_elt.onclick = () => edit_value("«path/@value»", "«path/@type»", this, this.last_display); | this.value_elt.style.pointerEvents = "none";