红宝石在轨道上
我正在为练习建立某种分级系统。 在rails_admin.rb中我有:
config.model Student do
object_label_method do
:student_code
end
end
config.model Grade do
list do
field :student do
searchable :student_code
end
field :course
field :category
field :score
end
end
使用rails_admin会自动给我一个学生过滤器,但是,它会根据student_id进行搜索。 如何自定义成绩管理员视图中的学生过滤器,以根据student_code属性搜索学生? 使用可搜索的文档如提供的文档不会给出任何结果。
链接地址: http://www.djcxy.com/p/67057.html上一篇: ruby on rails
下一篇: ruby on rails