simple_form_for rails radio button inline

后端 未结 6 1418
半阙折子戏
半阙折子戏 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:59

    Just for someone who using zurb foundation with simple form's chekbox came here:

    slim view:

    = f.input :company_stages, as: :check_boxes, required: true
    

    scss:

    // simple-form checbox
    .checkbox {
        margin-right: 20px;
        display: inline-block;
    }
    

提交回复
热议问题