次の要素が追加されたZF2のフォームがあります。
$this->add(array(
'name' => 'animals',
'type' => 'radio',
'attributes' => array(
'id' => 'animals',
'class' => 'form-control',
),
'options' => array(
'label' => 'Favourite animal',
'options' => array(
'cat' => 'Cat',
'dog' => 'Dog',
'fish' => 'Fish',
),
),
));
私のビュースクリプトには、次の行があります。
<?php echo $this->formrow($form->get('animals')); ?>
次のhtmlを生成しています:
<fieldset>
<legend>Favourite Animal</legend>
<label><input type="radio" name="animals" id="animals" class="form-control input-error" value="cat">Cat</label>
<label><input type="radio" name="animals" class="form-control input-error" value="dog">Dog</label>
<label><input type="radio" name="animals" class="form-control input-error" value="fish">Fish</label>
</fieldset>
フィールドセットにクラスを追加するにはどうすればよいですか?
以下をoptions
配列、attributes
配列、およびメイン配列のオプションとして追加しようとしましたが、フィールドセットにクラスを追加していません。
'fieldset_attributes' => array(
'class' => 'form-group',
),
[編集]
コード ( \Zend\Form\View\Helper\FormRow::render
) を調べると、次のことがわかりました。
...
// Multicheckbox elements have to be handled differently as the HTML standard does not allow nested
// labels. The semantic way is to group them inside a fieldset
if ($type === 'multi_checkbox' || $type === 'radio' || $element instanceof MonthSelect ) {
$markup = sprintf('<fieldset><legend>%s</legend>%s</fieldset>', $label, $elementString);
}
...
つまり、フィールドセット (または必要に応じて凡例) にクラスを追加する唯一の方法は、ビュー ヘルパーを拡張することです。