Skip to content

Commit

Permalink
Pointing out that dynamic_form plugin must be installed to be able to…
Browse files Browse the repository at this point in the history
… use error_messages and error_messages_for view helpers.
  • Loading branch information
reu authored and fxn committed Mar 5, 2011
1 parent eef713d commit 3f97f05
Showing 1 changed file with 14 additions and 1 deletion.
Expand Up @@ -738,7 +738,20 @@ person.errors.size # => 0


h3. Displaying Validation Errors in the View h3. Displaying Validation Errors in the View


Rails provides built-in helpers to display the error messages of your models in your view templates. Rails maintains an official plugin that provides helpers to display the error messages of your models in your view templates. You can install it as a plugin or as a Gem.

h4. Installing as a plugin
<shell>
$ rails plugin install git://github.com/rails/dynamic_form.git
</shell>

h4 Installing as a Gem
Add this line on your Gemfile:
<ruby>
gem "dynamic_form"
</ruby>

Now you will have access to these two methods in your view templates:


h4. +error_messages+ and +error_messages_for+ h4. +error_messages+ and +error_messages_for+


Expand Down

0 comments on commit 3f97f05

Please sign in to comment.