Source: [url]http://d.strelau.net/post/163547069/remove-div-fieldwitherrors-from-rails-forms[/url]
In a decision I have never understood, Rails forms by default add <div class="fieldWithErrors"> ... </div> around any field in your form that has validation errors on submission. Which sucks when you end up with markup like this:
At work we’ve had a hack in place for a while not that dug into ActionView and turned off this nonsense. We normally don’t go highlighting form fields with errors anyway. As it turns out though, that HTML is actually rendered by a proc you can set. By default it looks like this:
Just override this proc to return the tag only:
In your environment.rb file, that would be:
In a decision I have never understood, Rails forms by default add <div class="fieldWithErrors"> ... </div> around any field in your form that has validation errors on submission. Which sucks when you end up with markup like this:
<p>
<div class="fieldWithErrors"><label for="post_title">Title</label></div><br />
<div class="fieldWithErrors"><input id="post_title" name="post[title]" size="30" type="text" value="" /></div>
</p>At work we’ve had a hack in place for a while not that dug into ActionView and turned off this nonsense. We normally don’t go highlighting form fields with errors anyway. As it turns out though, that HTML is actually rendered by a proc you can set. By default it looks like this:
ActionView::Base.field_error_proc = Proc.new{ |html_tag, instance| "<div class=\"fieldWithErrors\">#{html_tag}</div>" }Just override this proc to return the tag only:
ActionView::Base.field_error_proc = proc {|html, instance| html }In your environment.rb file, that would be:
config.action_view.field_error_proc = proc {|html, instance| html }
本文介绍了一种方法来移除Rails默认在表单验证失败时添加的<div class=fieldWithErrors>标记。通过覆盖ActionView中的field_error_proc可以实现这一目的。
75

被折叠的 条评论
为什么被折叠?



