You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Form validator trims whitespaces from values before validation, which is really unwanted.
For example, " 123" validates as "integer".
Or " aaaa" validates against regexp[/^[a-z0-9]*$/i], but it shouldn't, as space is not a valid char, but the validator receives the form value as space-trimmed...
Currently I have to add custom validators, which validates against input value instead of the "value" param...
The text was updated successfully, but these errors were encountered:
This issue has been automatically marked as stale because it has not had recent activity. It will be closed in 30 days if no further activity occurs. Thank you for your contributions.
Form validator trims whitespaces from values before validation, which is really unwanted.
For example, " 123" validates as "integer".
Or " aaaa" validates against regexp[/^[a-z0-9]*$/i], but it shouldn't, as space is not a valid char, but the validator receives the form value as space-trimmed...
Currently I have to add custom validators, which validates against input value instead of the "value" param...
The text was updated successfully, but these errors were encountered: