public
Description: Rails Form Builder based on the Pragmatic Programmers' Error Handling Form Builder
Homepage:
Clone URL: git://github.com/santry/error_handling_form_builder.git
name age message
file MIT-LICENSE Loading commit data...
file README
file init.rb
directory lib/
directory views/
README
ErrorHandlingFormBuilder
========================

ErrorHandlingFormBuilder is a Rails plugin created from the "Keep Forms DRY" recipe in The Pragmatic Programmers' 
Advanced Rails Recipes (http://pragprog.com/titles/fr_arr/advanced-rails-recipes).


Example
=======

<% error_handling_form_for(@person) do |f| -%>
  <%= f.text_field  :first_name %>
  <%= f.text_field  :last_name, :label => 'Family Name' %>
  <%= f.date_select :birthday %>
  <%= f.select :sex, Person::SEX %>
  <%= f.text_area   :bio %>
  <%= f.submit 'Update' %>
<% end -%>


Copyright (c) 2008 The Pragmatic Programmers
Copyright (c) 2008 Sean Santry, released under the MIT license