In the admin area, how do i go about and show the base errors (errors not specific to a field?). Ideally i would like to do this for all models.
Thanks
I just found an easy way to get them.. but you still have to override the form:
ActiveAdmin.register Blah do
form do |f|
f.semantic_errors :blah
f.inputs do
f.input :one
f.input :two
end
f.buttons
end
end
Update You can simplify it like this too:
form do |f|
f.semantic_errors :blah
f.inputs
f.buttons
end
end
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With