i'm getting this error message popping up with strange styling. Where in my application is it coming from? I'm using the simple form gem.

enter image description here

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

This behavior is from HTML 5 form validation. You can disable this easily adding this options on your simple_form initializer:

SimpleForm.disable_browser_validations = true  # default is false

Or you can disable all HTML 5 stuff with:

SimpleForm.use_html5 = false  # default is true

See more info about this on simple_form README.

These options don't work with simple_form 1.3.1, only with simple_form master or newer versions.

link|improve this answer
Cool, thanks. How would you customize the content of the error messages coming from this html 5 form validation? – Justin Meltzer Apr 27 '11 at 21:14
I think that has no way to do this. – rafaelfranca Apr 28 '11 at 1:55
your answer doesn't seem to work for me? – Justin Meltzer Apr 28 '11 at 3:37
are you using the simple_form master? – rafaelfranca Apr 28 '11 at 3:49
I don't know. I put this in my gem file: gem "simple_form" – Justin Meltzer Apr 28 '11 at 3:52
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.