A Rails 2.3.x plugin to build DRY Wufoo style forms with AJAX validation.
- AJAX validates form fields as they are completed
- Well-placed validation output
- Automatic label generation
- Form field descriptions
- Sensible default form styling
- Unobtrusive Javascript contained in a single external file
- Options configurable at the application, form, and field level
Forget about labels, wrapper paragraphs, and cleaning up the f.error_messages
output and enjoy interactive forms with far less code in your views.
- Online documentation: http://rdoc.info/projects/nfm/better_form
- Source code: http://github.com/nfm/better_form
- Bug/Feature tracking: http://github.com/nfm/better_form/issues
-
Prerequisite: Install jRails:
script/plugin install git://github.com/aaronchi/jrails
-
Install the Better Form plugin from github:
script/plugin install git://github.com/nfm/better_form
-
Include
better_form.css
andbetter_form.js
(after jQuery and jRails) inapp/views/layouts/default.html.erb
:<%= stylesheet_link_tag 'better_form' %> <%= javascript_include_tag 'jquery', 'jrails', 'better_form' %>
-
Restart WEBrick and you're ready for better forms!
-
Add AJAX validation by calling
ajax_validates_for :model
in yourBetterAjaxValidationController
:class BetterAjaxValidationController < ApplicationController ajax_validates_for :user ajax_validates_for :address ... end
-
Ensure the default
:controller/:action/:id
routes exist at the bottom ofconfig/routes
for your AJAX validation methods:map.connect ':controller/:action/:id' map.connect ':controller/:action/:id.:format'
-
Generate a better form by calling
better_form_for
:<% better_form_for @user do |f| %> ... <% end %>
-
Generate fields with labels, descriptions, validation and 'required field' indicators using the regular form field methods:
<%= f.text_field :first_name, :validated => true, :description => 'Display name used throughout site', :required => true %> <p class="better_field"> <input id="user_first_name" class="better_text_field better_validated_field" name="user[first_name]" type="text" size="30" /> <span class="better_required_field">*</span> <br /> <span class="better_described_field">Display name used throughout site</span> </p> <%= f.text_field :last_name %> <p class="better_field"> <input id="user_last_name" class="better_text_field" value="Last name" name="user[last_name]" type="text" size="30" /> </p>
Sit back and watch as :validated => true
fields are automatically AJAX validated using your validation rules defined in your models.
Marvel at the beautiful form fields generated from single lines of code.
Form fields can be :validated
, :labelled
, :described
and :required
. Fields without labels have their initial value
set to the method they are associated with.
-
A validated field has the class
better_validated_field
added to its list of class names:<%= f.text_field :first_name, :validated => true %> <input class="better_text_field better_validated_field" id="person_first_name" name="person[first_name]" size="30" title="First name" type="text" value="First name" /><br />
-
A required field has the class
better_required_field
added to its list of class names, and an*
appended to it:<%= f.text_field :first_name, :required => true %> <input class="better_text_field better_required_field" id="person_first_name" name="person[first_name]" size="30" title="First name" type="text" value="First name" /><span class="better_required_field">*</span><br />
-
A labelled field has a label prepended to it:
<%= f.text_field :first_name, :labelled => true %> <label class="better_label" for="person_first_name">First name</label><br /> ...
Alternatively, you can pass :validate_all
, :label_all
and :require_all
as options to better_form_for
to apply the given options to every field.
The javascript file better_form.js
watches validated fields and calls their (generated) controller method to validate them when they are changed. This method returns an inline notification of the validity of the field.
You can inspect the default styling in vendor/plugins/better_form/lib/better_form/view_helper.rb
.
(The images used in span.better_valid_field
and span.better_invalid_field
are base64 encoded in their background
declaration)
If you use this plugin in an app that's made you money, please buy me a beer!
Copyright (c) 2010 Nicholas Firth-McCoy, released under the MIT license
This plugin borrows code and ideas from:
- Ryan Bates' nested_form plugin (and of course his excellent Railscasts)
- jbasdf's validate_attributes plugin