Closed
Description
<input name="plz" type="text" id="plz" data-validation="length" data-validation-length="5" />
I have the box as defined in the Code. Unfortunately, it is so that the field is not validated, the validator correctly. When I write in 1 character, it is precisely in order, as if I only write 4 in. However, it must be (in Germany) exactly 5 numbers.
I do not know how complicated it is to allow the data validation option. These are then carefully checked in the following order:
Example:
<input name="plz" type="text" id="plz" data-validation="length number" data-validation-length="5" />
This would only check the length and then only numbers. so you could all make it very dynamic.