1
ラジオボタン(入力グループ)とそのフィールドの上にある単一のラジオボタンでテキストフィールドを作成したいと思います。私は2つのラジオボタンをリンクさせたい。ここでSymfony3 - ラジオボタンを選択肢から分離する方法
は一例です:https://jsfiddle.net/y8tecoyf/
<div class="form-group">
<label class="col-sm-4 control-label">Field 1 :</label>
<div class="col-sm-8 ">
<div class="input-group">
<span class="input-group-addon">
<input type="radio" aria-label="..." name="choice" value="f1">
</span>
<input type="text" class="form-control" aria-label="...">
</div><!-- /input-group -->
</div>
</div>
<div class="form-group">
<label class="col-sm-4 control-label">Field 2 :</label>
<div class="col-sm-8 ">
<input type="radio" aria-label="..." name="choice" value="f2">
</div>
</div>
choicetypeのラジオボタンがリンクの異なるフィールドを操作することはできませんので、私はそれを行う方法がわかりません。または私はできますか?
まあ、私はその場に出てくると言わなければならない、私は選択欄を簡単に分けることができるかどうか分からなかった。どうもありがとう ! – ThEBiShOp