The field-with-errors tag has no wiki summary.
13
votes
4answers
3k views
Rails 3: “field-with-errors” wrapper changes the page appearance. How to avoid this?
Email field:
<label for="job_client_email">Email: </label>
<input type="email" name="job[client_email]" id="job_client_email">
looks like this:
But, if the email validation ...
3
votes
1answer
534 views
Rails 3: Why the field with error is not wrapped with “field_with_errors” div when validation fails?
My Product class has price field, which has an appropriate column in Products table in the database, and new_shop helper field (which is defined as attr_accessor, and does not has an appropriate ...
3
votes
5answers
3k views
Rails validation and 'fieldWithErrors' wrapping select tags
Is it normal behaviour to not get the <div class="fieldWithErrors"> wrapped arround select tags that have validation errors? I personally see no reason why the select tags should be treated ...