Number Field Type

Number Field Type

Number fields accept only numeric input, ideal for amounts, counts, and other values used in calculations.

Configuration Options

PropertyDescription
LabelName shown to users (e.g., "Loan Amount")
PlaceholderHelper text (e.g., "Enter amount")
Default ValuePre-filled number
RequiredWhether field must be filled
Help TextAdditional guidance

Validation

Number fields validate:

  • Required fields: Cannot be empty
  • Format: Must be a valid number
  • Decimals: Supports decimal points
  • Negatives: Supports negative numbers

Input Behavior

  • Keypad: Shows numeric keypad on mobile devices
  • Decimals: Users can enter decimal points
  • Formatting: No automatic currency formatting
  • Range: No minimum/maximum limits

Best Practices

When to Use Number Fields

DataUse Number Field?
Monetary amountsYes
Counts/quantitiesYes
PercentagesYes
Phone numbersNo (use Phone type)
ZIP codesNo (use Text type - may start with 0)
IDs with leading zerosNo (use Text type)

Label Naming

  • Be specific: "Loan Amount" not "Amount"
  • Include units if helpful: "Square Footage", "Document Count"
  • Avoid currency symbols: Don't use "$" in label (users may enter other currencies)

Placeholder Examples

LabelGood Placeholder
Loan Amounte.g., 250000
Document Counte.g., 15
Square Footagee.g., 2000

Common Examples

LabelUse Case
Loan AmountMortgage or loan principal
Property SqFtSquare footage of property
Document CountNumber of documents
Year BuiltProperty construction year
Borrower CountNumber of signers

Related Help