Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bcardarella/905804 to your computer and use it in GitHub Desktop.
Save bcardarella/905804 to your computer and use it in GitHub Desktop.
custom formbuilders for client side validations
// rails.validations.custom.formbuilder.js
// Assuming that your custom Formtastic FormBuilder class is called 'MyCustomFormBuilderClass'
clientSideValidations.formBuilders['MyCustomFormBuilderClass'] = {
add: function(element, settings, message) {
clientSideValidations.formBuilders['Formtastic::SemanticFormBuilder'].add(element, settings, message);
},
remove: function(element, settings, message) {
clientSideValidations.formBuilders['Formtastic::SemanticFormBuilder'].remove(element, settings, message);
}
}
@mat813
Copy link

mat813 commented Apr 8, 2011

After wondering why it did not work for a while, I did a s/formbuilders/formBuilders/ and was illuminated :-)

@bcardarella
Copy link
Author

Updated :)

@mat813
Copy link

mat813 commented Apr 8, 2011

missed one :-)

@hmayer00
Copy link

in case anyone else winds up here, note that you'll need to change clientSideValidations to ClientSideValidations (uppercase). Other than that still seems to work.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment