You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When translating an element of type number, xs:fractionDigits defines the maximum number of fractional digits (i.e., digits that are after the decimal point). When set to 0, that means that no fractional digits are allowed. The corresponding HTML element should have a step of 1. In this case, the xsd22html2xml transformation incorrectly generates an element of step 0.1 instead. This is due to the default "otherwise" clause from "gui-attributes.xsl".
Should be replaced by "xsl:otherwise1</xsl:otherwise>". This clause appears three times: <xsl:when test="$type = 'decimal'">, <xsl:when test="$type = 'float'">, <xsl:when test="$type = 'double'">.
The text was updated successfully, but these errors were encountered:
When translating an element of type number, xs:fractionDigits defines the maximum number of fractional digits (i.e., digits that are after the decimal point). When set to 0, that means that no fractional digits are allowed. The corresponding HTML element should have a step of 1. In this case, the xsd22html2xml transformation incorrectly generates an element of step 0.1 instead. This is due to the default "otherwise" clause from "gui-attributes.xsl".
Should be replaced by "xsl:otherwise1</xsl:otherwise>". This clause appears three times: <xsl:when test="$type = 'decimal'">, <xsl:when test="$type = 'float'">, <xsl:when test="$type = 'double'">.
The text was updated successfully, but these errors were encountered: