Open 1ucay opened 3 years ago
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
I solved by this way Validate.addValidator('required', function(value, param1, param2) { return ( value.trim() !== '' ); }, "", 5, false);
Validate.addValidator('required', function(value, param1, param2) { return ( value.trim() !== '' ); }, "", 5, false);
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