Skip to content

Latest commit

 

History

History
38 lines (30 loc) · 1023 Bytes

File metadata and controls

38 lines (30 loc) · 1023 Bytes

form_frontend_validation

Frontend validation for the TYPO3 form framework.

Adds data attributes to form elements for the Parsley JavaScript form validation library.
Currently implemented validators:

  • AdvancedPassword
  • AlphanumericValidator
  • CountValidator
  • DateRangeValidator
  • EmailAddressValidator
  • FloatValidator
  • IntegerValidator
  • NotEmptyValidator
  • NumberRangeValidator
  • NumberValidator
  • RegularExpressionValidator
  • StringLengthValidator

Installation

$ composer req r3h6/form-frontend-validation

Integration

Include in your TypoScript template following static templates:

  • Form Validation "Parsley"
  • Form Validation "Parsley JavaScript" (Optional)
  • Form Validation "Parsley Styles" (Optional)

New template paths will be added to the form framework on key 11. If you changed the form field partial template you must add following HTML code to your partial:

<span id="{element.uniqueIdentifier}-errors" class="error help-block"></span>