I'm using formvalidation.io (an extension of jQuery form validation) to validate my form and am having trouble with fields that have the type 'number'.
I want to use the type so that the number keys are presented to the user on mobile devices.
The validation on the field is very simple:
depth: {
validators: {
notEmpty: {
message: 'You must enter the depth of the excavation.'
}
However it's the default validation of the number type field that causes the problem. The field will accept: 1.00, 1, 2.00 etc.
But will not accept any decimals: 0.50, 1.20, 2.30 etc.
The default validation "Please enter a valid number" is called
Thats because the default HTML5 validation
type="number"
doesnt allow decimals without astep
specified.From the FormValidation.io Docs:-
Try this:-