Email field:

<label for="job_client_email">Email: </label> 
<input type="email" name="job[client_email]" id="job_client_email">

looks like this:

without_error

But, if the email validation fails, it becomes:

<div class="field_with_errors">
  <label for="job_client_email">Email: </label>
</div> 
<div class="field_with_errors">
  <input type="email" value="wrong email" name="job[client_email]" id="job_client_email">
</div>

which looks like this:

with_error

How could I avoid this appearance change ?

link|improve this question

Can you remove field with errors all together? – MattiasB Oct 14 '11 at 9:21
feedback

4 Answers

up vote 42 down vote accepted

You should override ActionView::Base.field_error_proc. It's currently defined as this within ActionView::Base:

 @@field_error_proc = Proc.new{ |html_tag, instance| "<div class=\"field_with_errors\">#{html_tag}</div>".html_safe }

You can override it by putting this in your application's class inside config/application.rb:

config.action_view.field_error_proc = Proc.new { |html_tag, instance| "#{html_tag}".html_safe }
link|improve this answer
1  
One little question: Why both the label and the input are wrapped ? How Rails decide what to wrap ? – Misha Moroshko Mar 11 '11 at 2:03
This is probably done so that you can style the label of a field with errors as well. Also, rails knows what to wrap because you tell it which fields belong to what attribute of the resource your are making the form for: f.label :password and f.password_field :password in the @resource.errors there would be a [:password] error set. – Mosselman Mar 21 at 16:16
feedback

The visual difference you are seeing is happening because the div element is a block element. Add this style to your CSS file to make it behave like an inline element:

.field_with_errors { display: inline; }
link|improve this answer
Thanks! This works in my case. However, the other answers are more general! – Misha Moroshko Mar 11 '11 at 2:00
+1 for a simple solution that solves the issue! – Tabrez Jan 28 at 3:25
Nice. I had to use display: inline-table; but it worked. – theButler Mar 14 at 5:54
This is a hack at best because it negates whatever display: property being used (and other layout styles) on the html_tag. – rxgx May 4 at 21:34
I don't see it as a hack. The display property being used before this css is added is block which is causing the visual difference that is not desired. It doesn't negate any other layout styles on the tag. However, Ryan Bigg's answer is perfect if you want to change/remove the tag that wraps the field with errors. – dontangg May 7 at 12:46
feedback

The extra code is being added by ActionView::Base.field_error_proc. If you're not using field_with_errors to style your form, you can override it in application.rb:

config.action_view.field_error_proc = Proc.new { |html_tag, instance| html_tag.html_safe }

Alternatively, you can change it to something that suits your UI:

config.action_view.field_error_proc = Proc.new { |html_tag, instance| "<span class='field_with_errors'>#{html_tag}</span>".html_safe }
link|improve this answer
feedback

I currently use this solution, placed in an initializer:

ActionView::Base.field_error_proc = Proc.new do |html_tag, instance|
  class_attr_index = html_tag.index 'class="'

  if class_attr_index
    html_tag.insert class_attr_index+7, 'error '
  else
    html_tag.insert html_tag.index('>'), ' class="error"'
  end
end

This allows me to merely add a class name to the appropriate tag, without creating additional elements.

link|improve this answer
This is awesome for using the error fields in an unobtrusive way. – rxgx May 4 at 21:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.