Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8470441
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T16:31:10+00:00 2026-06-10T16:31:10+00:00

How do you display form field highlighting for fields that fail validation errors in

  • 0

How do you display form field highlighting for fields that fail validation errors in Rails 3.1? I know that scaffolding automatically generates the css and controller code to handle this, but I was wondering if there was a way to generate that manually. I have already implemented the string display of error messages through: @user.errors.full_messages.each…etc, but I can’t get the fields to become highlighted in red. Any ideas?

Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T16:31:12+00:00Added an answer on June 10, 2026 at 4:31 pm

    Assuming you have an error class for fields in your CSS file:

    <% if @user.errors[:name] %>
      <%= f.label :name, :class => "error" %>
    <% else %>
      <%= f.label :name %>
    <% end %>
    

    Is this what you want?

    Extra: here’s a section about customizing default ActiveRecord validations CSS.

    Edit: (about extra ifs)

    # app/helpers/application_helper.rb
    
    def field_class(resource, field_name)
      if resource.errors[field_name]
        return "error".html_safe
      else
        return "".html_safe
      end
    end
    

    And then:

    # in your view
    
    <%= f.label :name, :class => field_class(@user, :name) %>
    <%= f.label :password, :class => field_class(@user, :password) %>
    [...]
    

    (I may have make a mistake in there – I’m writing on a phone – but you get the general idea. You can code this in number of ways = infinity, so do it the way you like…)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to display form-level errors in my forms (errors that do not belong
I am trying to display a validation error message beside the form field reportFileURL.
How can i display the validation error messages just below the form field rather
We are customizing workflow approval form to display the associated list item fields. This
I have a multi-lingual page where I want to display form validation error in
when i submit the form.. the form display the 'error' msg that mean the
Let's say I have a form field for Name. I want to display an
My web-app framework renders form errors for each field in an unordered list <UL>
I am using javascript form validation, and jquery to display the error messaging and
I'm using jQuery validator() to display HTML form 'data-message' if the field is invalid.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.