LoginSignup
8
9

More than 5 years have passed since last update.

Railsでvalidation時に<div class="field_with_errors">が出てスタイルが崩れたら

Posted at

Railsでvalidationでエラーメッセージを表示した際に<div class="field_with_errors">が出てしまいスタイルが崩れてしまった際の対処法メモです。ラジオボタンとかチェックボックスとか崩れやすいですね。

対処方

application.rb
config.action_view.field_error_proc = Proc.new { |html_tag, instance| %Q(#{html_tag}).html_safe }

参考

Configuring Rails Applications — Ruby on Rails Guides
http://guides.rubyonrails.org/configuring.html#configuring-action-view

8
9
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
9