ruby-on-rails-4 – rails_admin – 如何按列表视图中的自定义字段进行排序

我正在使用RoR 4.1和RailsAdmin 0.6.8.我可以在RA中创建自定义字段,方法是在模型上定义一个方法并将其包含在内

field :custom_method 

或formatted_value

field :custom_field do
 formatted_value{ bindings[:object].something_here }
end

问题是我无法按列表视图中的该列进行排序.有人有这方面的经验吗?

最佳答案

field :custom_field do
sortable :name #or:lastname or :firstname
formatted_value{ bindings[:object].something_here}
end
点赞