Last active
March 25, 2025 15:12
-
-
Save telwell/db42a4dafbe9cc3b7988debe358c88ad to your computer and use it in GitHub Desktop.
Customize Field Errors with Rails 5 and Bootstrap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Adapted from https://rubyplus.com/articles/3401-Customize-Field-Error-in-Rails-5 | |
ActionView::Base.field_error_proc = Proc.new do |html_tag, instance| | |
html = '' | |
form_fields = [ | |
'textarea', | |
'input', | |
'select' | |
] | |
elements = Nokogiri::HTML::DocumentFragment.parse(html_tag).css "label, " + form_fields.join(', ') | |
elements.each do |e| | |
if e.node_name.eql? 'label' | |
html = %(#{e}).html_safe | |
elsif form_fields.include? e.node_name | |
e['class'] += ' is-invalid' | |
if instance.error_message.kind_of?(Array) | |
html = %(#{e}<div class="invalid-feedback">#{instance.error_message.uniq.join(', ')}</div>).html_safe | |
else | |
html = %(#{e}<div class="invalid-feedback">#{instance.error_message}</div>).html_safe | |
end | |
end | |
end | |
html | |
end |
@nicholasshirley do you need to call .html_safe
both on the .add_child
and when returning the complete input_tag
?
I would expect it to only be necessary on the last line, but I can be wrong (which is not a rare occurrence).
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
These are great, thank you!
Not sure what's changed in the intervening time, but I had to combine the last 2 answers to get it working with Rails 8 and BS 5.3.
I tried adding sibling with Nokogiri, but I couldn't get it.edit, it works nowEdit: Not all the invalid-feedback will be visible on the page (Bootstrap styling I'm guessing). Specifically in the example above it will not display for select boxes that error. Adding
d-block
toinvalid-feedback
makes them display all the time. Old Issue for old version, but still seems to be an issue with current version: twbs/bootstrap#29439One thing to be aware of if you decide to go the way of calling
.at_css
is that you will need one for each of the 4 input types that Bootstrap currently classes (form-control
,form-select
,from-check-input
andform-range
)