0
私は次のようにラジオボタンが定義されfoo
を設定している:それは、このように呼ばれていますビュースクリプトでラジオボタンセットのコンテナのクラスをZF2フォームに設定する方法は?私のフォームで
$this->add(
[
'type' => 'radio',
'name' => 'foo',
'options' => [
'label' => 'foo',
'value_options' => [
[
'value' => Foo::BAR,
'label' => 'bar'
],
[
'value' => Foo::BUZ,
'label' => 'buz'
]
],
'label_attributes' => [
'class' => 'col-md-12',
]
],
'attributes' => [
'class' => 'field-foo'
]
]);
を:
$this->formRow($myFieldset->get('foo'));
だから私はこのHTMLを取得する:
<fieldset>
<legend>foo</legend>
<label class="col-md-12">
<input type="radio" value="bar" class="field-foo" name="my_fieldset[foo]">bar
</label>
<label class="col-md-12">
<input type="radio" value="buz" class="field-foo" name="my_fieldset[foo]">buz
</label>
</fieldset>
今度は、必要に応じてこのラジオボタンを設定します。
label.required:before {
content: '* ';
color: #ff0000;
}
この場合、私はこれを行う方法を
fieldset > legend.required:before, /*or*/
fieldset.required > legend:before {
content: '* ';
color: #ff0000;
}
を定義するために、legend
または少なくともfieldset
にアクセスする必要があります。input[type="text"]
フィールドのために私はlabel
を経由していることを管理しますか? Zend Framework 2で設定したラジオボタンの要素fieldset
/のクラスを設定する方法は?