使用belongs_to的Rails管理员accepted_nested_attributes隐藏搜索选择

时间:2014-06-02 14:14:57

标签: ruby-on-rails rails-admin

我使用的模型与Rails Admin的两个belongs_to关联。

belongs_to :product, inverse_of: :services
belongs_to :user, inverse_of: :services

accepts_nested_attributes_for :product, allow_destroy: true
accepts_nested_attributes_for :user, allow_destroy: true

添加accepts_nested_attributes_for会使生成的表单看起来像这样,而不选择在现有记录中搜索。

enter image description here

没有accepts_nested_attributes_for它看起来很像我想要的

enter image description here

有没有办法强制Rails管理员使用搜索选择?

field :user do
  nested_form false
end

没有像我预期的那样工作。

1 个答案:

答案 0 :(得分:0)

field :user do
  nested_form false
end

实际上工作正常。我只是在列表块中使用它而不是编辑...叹息