0

4 つのラジオ ボタンがあるフォームがありますが、そのラジオ ボタンにラベルを追加する方法がわかりません。

LABEL .........Radio1Radio2Radio3Radio4

ラジオボタンのコード:

%div{"data-role" => "fieldcontain"}
  //I think here i need to add something
  %div{"data-role" => "controlgroup", "data-type" => "horizontal"}
    - @models.each do |rep| 
      %label{for: "#{rep.text}_#{c.id}"}= rep.text
      = radio_button_tag "answers[#{c.id}]", id: "#{rep.text}_#{c.id}"

いろいろ試しましたが、このようなラベルがベストです。

ラベル

ラジオ1ラジオ2ラジオ3ラジオ4

4

1 に答える 1