We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
ClientSideValidations supports Formtastic.
ClientSideValidations
Formtastic
Example:
<%= semantic_form_for @book, :validate => true do |book| -$>
If you want to turn off the validation for a particular input you have to use the :input_html syntax for Formtastic:
= semantic_form_for @user, :validate => true do |user| = user.input :email = user.input :username, :input_html { :validate => false }