我正在使用RoR 4.1和RailsAdmin 0.6.8。我可以通过在模型上定义一个方法并通过
包含它来在RA中创建自定义字段field :custom_method
或formatted_value
field :custom_field do
formatted_value{ bindings[:object].something_here }
end
问题是我无法按列表视图中的该列进行排序。有人有这方面的经验吗?
答案 0 :(得分:1)
field :custom_field do
sortable :name #or:lastname or :firstname
formatted_value{ bindings[:object].something_here}
end