Long input type
Contents
A simple input for storing integer numbers.
Usage
<input name="mylong" type="Long">
<label>My Long</label>
<default>42</default> (1)
</input>
<input name="degrees" type="Long">
<label>Degrees</label>
<config>
<min>0</min> (2)
<max>360</max> (3)
</config>
</input>
1 | default can be any Integer number |
2 | config/min optionally specifies the minimum allowed value |
3 | config/max optionally specifies the maximum allowed value |