.. _defaultvalidator: ================ DefaultValidator ================ This is the default :ref:`Validator `, it supports all available :ref:`error checks `. .. code-block:: typoscript Example Code: validators { DefaultValidator { model = DefaultValidator config { messageLimit = 1 messageLimits { email = 2 } restrictErrorChecks = LengthMax,LengthMin,Required,Email disableErrorCheckFields = firstName disableErrorCheckFields = { firstName = LengthMax,LengthMin email = Required } fields { firstName.errorChecks { lengthMax { model = LengthMax lengthMax = 20 } lengthMin { model = LengthMin lengthMin = 10 } } email.errorChecks { required { model = Required } email { model = Email } } } } } } **Properties** .. list-table:: :align: left :width: 100% :widths: 20 80 :header-rows: 0 :stub-columns: 0 * - **messageLimit** - Sets the default limits of error messages for all and fields. * - - * - *Mandatory* - False * - *Data Type* - Integer * - *Default* - 1 .. list-table:: :align: left :width: 100% :widths: 20 80 :header-rows: 0 :stub-columns: 0 * - **messageLimits** - List containing the field name path and limit of error messages for specific fields. * - - * - *Mandatory* - False * - *Data Type* - Array * - *Default* - Empty Array .. list-table:: :align: left :width: 100% :widths: 20 80 :header-rows: 0 :stub-columns: 0 * - **restrictErrorChecks** - | Comma separated list containing the :ref:`error checks ` to perform. | If this is set, only these :ref:`error checks ` will be executed, all other configured :ref:`error checks ` will be ignored. * - - * - *Mandatory* - False * - *Data Type* - String * - *Default* - Empty String .. list-table:: :align: left :width: 100% :widths: 20 80 :header-rows: 0 :stub-columns: 0 * - **disableErrorCheckFields** - | Comma separated list containing the field name path to disable :ref:`error checks ` for. | If this is set, all configured :ref:`error checks ` will be ignored, these fields. | | Or a list containing the field name path as key and a comma separated list of :ref:`error checks ` as values. | | This setting can be altered by :ref:`condition blocks ` depending on user input. * - - * - *Mandatory* - False * - *Data Type* - String|Array * - *Default* - Empty String .. list-table:: :align: left :width: 100% :widths: 20 80 :header-rows: 0 :stub-columns: 0 * - **fields** - List containing the :ref:`fields ` and :ref:`error checks `. * - - * - *Mandatory* - False * - *Data Type* - Array * - *Default* - Empty Array .. toctree:: :maxdepth: 2 :hidden: Field