simple_form_for rails radio button inline

后端 未结 6 1385
半阙折子戏
半阙折子戏 2021-01-30 23:26

I am trying to get my buttons to display inline and also have a default value because it can\'t be blank. I am usingplataformatex/simple_form and bootstrap.

= f.         


        
6条回答
  •  無奈伤痛
    2021-01-30 23:37

    Using Simple Form with Bootstrap 3 you can use the radio class along with the item_wrapper_class and item_wrapper_tag options.

    = f.collection_radio_buttons :sort, [[foo,bar],[foo,bar],
      :first, :last,
      item_wrapper_class: :radio,
      item_wrapper_tag: :div
    

提交回复
热议问题