私はTextField
このようなクラスを追加しようとしています:
<div class="form-group-lg">
<?= $form->field($model, 'email'); ?>
</div>
出力:
そして、それはこのようなものでしょうか?(ラベルは の中にありますTextField
)つまり、以下のコードのように使用できますか?
例:
私はこのようなものが必要です:
<div class="form-group label-floating">
<label class="control-label" for="focusedInput1">Write something to make the label float</label>
<input class="form-control" id="focusedInput1" type="text">
</div>
http://fezvrasta.github.io/bootstrap-material-design/bootstrap-elements.html
フォーム セクション最初のもの。
それで、質問は、
Yii2 ActiveForm で上記のコードを使用してこのアイテムにクラスを追加するにはどうすればよいですか?