Rails - Default selected radiobutton in SimpleForm :collection

后端 未结 4 620
一向
一向 2020-12-06 05:22

I\'ve litte problem with radiobuttons in SimpleForm.

When i use

= f.association :manufactureType, :collection => ManufactureType.all, :as => :         


        
4条回答
  •  醉话见心
    2020-12-06 06:03

    Here is an excerpt of my code which works:

    = f.input :body_format,
      collection: [['markdown', 'Markdown']],
      label_method: :last,
      value_method: :first,
      as: :radio_buttons,
      checked: 'markdown', # THIS
      required: true
    

提交回复
热议问题