DEPRECATION WARNING

This documentation is not using the current rendering mechanism and is probably outdated. The extension maintainer should switch to the new system. Details on how to use the rendering mechanism can be found here.

“data” attributes

One of the main features of FormZ is the handling of attributes, automatically updated in the HTML tag <form>.

These attributes allow to know exactly what is the state of every field in the form: is this field valid? What's the value of this field? Does this field contain an error?

This way, you can set up CSS selectors that follow your needs.

Example:

<form name="exForm" class="formz" fz-value-has-animal="1"
      fzvalid-has-animal="1" fzerror-animal-name-required-default="1">
    ...
</form>

In this example, there are three attributes:

  • fz-value-has-animal="1"

    Contains the value of the field hasAnimal, it must be a checkbox, and the value 1 means it is checked.

  • fz-valid-has-animal="1"

    The field hasAnimal did pass its validation rules.

  • fz-error-animal-name="1"

    The field animalName contains at least one error.

  • fz-error-animal-name-required-default="1"

    The field animalName contains an error, whose identifier is required and the message key is default.

Thanks to these selectors, it's possible to answer almost every situation in the form, and interact with it.

The core of FormZ uses these selectors to show or hide the containers of the fields and their messages.


“data” attributes list

Currently, FormZ automatically handle the following attributes:

  • fz-valid

    Attribute added when all fields have been tested and validated.

  • fz-value-{field-name}

    Where {field-name} is the name of the field, in dashed lower case.

    It will be updated when the current value of the field.

  • fz-valid-{field-name}

    Where {field-name} is the name of the field, in dashed lower case.

    Will be added when the field contains a valid value (its validation rules did not return any error).

  • fz-error-{field-name}

    Where {field-name} is the name of the field, in dashed lower case.

    Will be added when the field contains at least one error.

  • fz-error-{field-name}-{validation-name}-{message-key}

    Where {field-name} is the name of the field, {validation-name} the name of the validation rule and {message-key} the key of the message returned by the validation rule, all in dashed lower case.

    Will be added when a validation rule returns an error for the field.

  • fz-loading

    Attribute added to the container of a field when it's being validated. It is mainly useful to display a loading circle during an Ajax request.

    The same attribute is added to the form tag when the form is being submitted.

  • fz-submission-done

    When the form has been submitted, this attribute is added.

  • fz-submitted

    When the form is being processed (the page is loading), this attribute is added.