Subject: | Wrong type to number assigned |
From: | mminar7 [...] gmail.com |
This config settings:
- type: Number
name: variableA
label: 'Variable A'
attributes_xml: { min: "1", max: "90" }
attributes:
id: variableA
size: 30
maxlength: 256
label_class: mandatory
should produce html code:
<div class="number">
<input id="variableA" name="variableA" value = "80" max="90"
maxlength="256" min="1" size="30" type="number"></input>
</div>
but it produce:
<div class="number">
<input id="variableA" name="variableA" value = "80" max="90"
maxlength="256" min="1" size="30" type="text"></input>
</div>
It is not expected behavior.
Best Regards
Marian