0

私はこのフォームを持っているとしましょう:

$this->addElement('select', 'menu');

$subform = new Zend_Form_SubForm();
$subform->addElement('text', 'title');
$subform->addElement('text', 'content');

$this->addSubform($subform, 'bar');

$this->addElement('submit', 'submit');

そして、次のようにサブフォームの周りにカスタム html をラップしたかったのです。

<div id="foo">
     <!-- subform here -->
</div>

どうすればそれを行うことができますか?addSubform()のようにオプション パラメータを取りませんaddElement()

4

1 に答える 1

1

サブフォームにデコレータを追加できます。

$subform-> setSubFormDecorators($decorators);
于 2013-11-16T22:22:52.287 に答える