activeadmin: adding delete for a nested resource

前端 未结 6 1907
我在风中等你
我在风中等你 2021-02-12 10:42

I have a infrastructure object composed for many datacenters. In the apps/admin/infrastructures.rb I have the following code:

form do |f|
  f.inputs \"Infrastruc         


        
6条回答
  •  醉酒成梦
    2021-02-12 11:10

    Solved adding the following line:

    datacenter_form.input :_destroy, :as => :boolean, :required => false, :label => 'Remove'
    

    The code looks like:

    form do |f|
      f.inputs "Infrastructure details" do
        f.input :name
    
        f.has_many :datacenters do |datacenter_form|
          datacenter_form.input :name
          datacenter_form.input :_destroy, :as => :boolean, :required => false, :label => 'Remove'
        end
      end
      f.buttons
    end
    

提交回复
热议问题