Form validation ensures that users enter correct and structured data before submitting a form. In Wonderful Relations, we use Parsley.js (See Dependent Frameworks) for client-side validation, allowing real-time feedback and error prevention.

Validation Rules

Required

If a field is marked as required, the system ensures it is not left empty before form submission. This applies to all field types.

Read-Only

Read-only fields cannot be modified by the user but still retain their values.

Number Validation

Fields with a number type (e.g., number, decimal, currency) are validated to ensure only numerical input.

If a decimal precision is need an option step is needed. Example: To allow a Currency Value “0.99” you need to apply option step=“0.01”

Visual Examples