Pristine icon indicating copy to clipboard operation
Pristine copied to clipboard

Required allow whitespace?

Open 1ucay opened this issue 4 years ago • 1 comments

Hi, how can I prevent whitespace on input required? https://stackoverflow.com/questions/13766015/is-it-possible-to-configure-a-required-field-to-ignore-white-space

1ucay avatar Jun 22 '21 09:06 1ucay

I solved by this way Validate.addValidator('required', function(value, param1, param2) { return ( value.trim() !== '' ); }, "", 5, false);

1ucay avatar Jun 22 '21 09:06 1ucay