#number-field
h3.is-size-3 Formidable Number Field Doc
p The Formidable Number Field is invoked by setting the
code fieldType
| to
code FieldType.Number
| . This enables some number-specific additional properties like
code minimum
| and
code maximum
|.
h4.is-size-4 Basic Config
p The basic configuration for a Formidable Number involves
code value
|,
code fieldType
|, and the optional
code label:
.columns.is-mobile
.column
pre(v-highlightjs="JSON.stringify(basicNumberFieldConfig, null, 1)")
code(class="javascript")
.column
FormidableForm(:form="basicNumberFieldConfig")
p More advanced configurations of the Formidable Number involve using the additional properties
code minimum
|,
code maximum
| or either.
.columns
.column
pre(v-highlightjs="JSON.stringify(minmaxNumberFields, null, 1)")
code(class="javascript")
.column
FormidableForm(:form="minmaxNumberFields")