I am using RoR 4.1 with RailsAdmin 0.6.8. I can create custom fields in RA either by defining a method on a model, including using
field :custom_method
or formatted_value
field :custom_field do
formatted_value{ bindings[:object].something_here }
end
The problem is that I cannot sort by this column as a list. Does anyone have any experience?
source
share