0

这类似于我之前的问题Ruby On Rails Active Admin has_many 更改下拉列表以使用不同的列

我想出了如何重新分配 af.inputs但是在查看项目时我将如何重新分配数据的显示...

例如:

在此处输入图像描述

公共 Git 仓库:https ://github.com/gorelative/TestApp

我的代码片段fillups.rb

ActiveAdmin.register Fillup do
    form do |f|
        f.inputs do
            f.input :car, :collection => Car.all.map{ |car| [car.description, car.id] }
            f.input :comment
            f.input :cost
            f.input :mileage
            f.input :gallons
            f.buttons
        end
    end
end
4

1 回答 1

2

修改show动作

ActiveAdmin.register Fillup do
  # ... other stuff

  show do
    attributes_table do
      # add your other rows
      row :id
      row :car do |fillup|
        link_to fillup.car.description, admin_car_path(fillup.car)
      end
    end
  end
end
于 2012-05-22T18:03:27.370 回答