I have a form that has one optional input and 3 required input fields. For the optional input I have the below markup:
You can use data-parsley-type="digits". Notice the use of type="text" instead of number.
data-parsley-type="digits"
type="text"
number
This works if you only want to allow digits (not floats).
If you want floats, you can use data-parsley-type='number':
data-parsley-type='number'