Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way to tell Rails to not create div.field_with_errors around both label and actually field, but to create div.error around them both?

E.g. snippet from my view with the form (written in HAML)

= form_for @user do |f|
  %div.clearfix
    = f.label :name
    %div.input
      = f.text_field :name

I want in the case of error the root div to be div.clearfix.error and avoid that field_with_errors. Can I do so?

As another option, can I make formtastic to create Bootstrap-styled elements, w/o formtastic's css and html classes, but with bootstrap's ones. Can I make something with error fields in the case of using formtastic?

share|improve this question

6 Answers

@flowdelic's answer seems to be the simplest fix. However, the names are incorrect. This may be due to the Rails/Bootstrap version, but this works for me.

/* Rails scaffold style compatibility */
#error_explanation {
  @extend .alert;
  @extend .alert-error;
  @extend .alert-block; /* optional */
}

.field_with_errors {
  @extend .control-group.error
}
share|improve this answer

if anyone uses LESS:

in bootstrap_and_overrides.css.less you can add:

#error_explanation {
  .alert();
  .alert-error();
  .alert-block();
}

.field_with_errors {
  .control-group.error();
}

which is the LESS version of the shown sass example.

share|improve this answer

You can use the Formtastic Bootstrap gem to create Twitter Bootstrap-friendly markup with Formtastic.

share|improve this answer

If you are using SASS with Twitter Bootstrap, you can use the @extend directive to apply the Twitter Bootstrap styles to the Rails generated CSS classes. (Search GitHub, there are several Bootstrap/SASS ports available.)

For example:

@import "bootstrap";

/* Rails scaffold style compatibility */
.errorExplanation {
  @extend .alert-message;
  @extend .block-message;
  @extend .error;
}

.fieldWithErrors {
  // pulled from div.clearfix.error
  @include formFieldState(#b94a48, #ee5f5b, lighten(#ee5f5b, 30%));
}

Note that the Twitter Bootstrap style for 'error' is attached to a div.clearfix selector, which prevents us from simply doing this:

.fieldWithErrors {
  @extend .error;
}

So, instead, I copied/pasted the code from Bootstrap's definition for div.clearfix.error into my .fieldWithErrors selector.

share|improve this answer
Does this work with Twitter Bootstrap 2.0? – Alex Mar 7 '12 at 21:50
TB2 doesn't seem to like @extend I get a syntax error. – Marc Apr 17 '12 at 17:52

Below is what I came up with.

I added this to my css

.field_with_errors {
    display:inline;
    margin:0px;
    padding:0px;
}

I added this to the <head>

$(function(){
    $('.field_with_errors').addClass('control-group error');
});
share|improve this answer

It's actually more irritating than you'd think.

I ended up creating my own tag helpers (which I needed for other purposes as well), although I started with just overriding ActionView::Base.field_error_proc. (Which is a story unto itself since it passes in a string, not actually something you can reliably fiddle with :(

But start with that and see if it does enough for you, otherwise prepare for some digging and tweaking.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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