表示グループからラベルを削除する方法を理解しようとしていますが、下の マークアップを見ると、IDアドレスラベルと次のddを持つdtがあることがわかります、私はこれらを削除したいが、 フィールドセットを保持したい。Zend Form表示グループデコレータ
表示グループを追加するには、それぞれの要素を追加した後で、この$this->addDisplayGroup(array(...), 'legend' => 'address');
を myフォームのinitクラス内に使用しています。私がしたくない要素を削除するために遊ぶことができるいくつかのデコレータがありますか?
<form id="CreateAddress" enctype="application/x-www-form-urlencoded" action="" method="post">
<dl class="zend_form">
<dt id="address-label"> </dt>
<dd id="address-element">
<fieldset id="fieldset-address">
<legend>Address</legend>
<dl>
<dt id="addressLine1-label">
<label for="addressLine1" class="required">Address Line 1</label>
</dt>
<dd id="addressLine1-element">
<input type="text" name="addressLine1" id="addressLine1" value="">
</dd>
...etc...
</fieldset>
</dd>
...buttons...
</dl>
</form>
おかげで、
マーティン