Double input type

Contents

A simple input type for storing decimal numbers.

Usage

<input name="mydouble" type="Double">
  <label>My Double</label>
  <default>3.89</default>  (1)
</input>

<input name="angle" type="Double">
  <label>Angle (rad)</label>
  <config>
    <min>0</min>  (2)
    <max>3.14159</max>  (3)
  </config>
</input>
1 default can be any double-precision floating-point number, with the dot character as decimal separator
2 config/min optionally specifies the minimum allowed value
3 config/max optionally specifies the maximum allowed value

Contents

Contents