Zend Framework 2.1.4 では、標準のフォーム ビュー ヘルパーを使用してフォーム要素をレンダリングしています。
私がしようとすると:
<?php echo $this->formRow($form->get('Title'));?>
ラベル テキストと入力要素は、ラベル内に配置されます。
<label>
<span>Title</span><input type="text" name="Title" placeholder="Inserisci titolo"
required="required" value="">
</label>
以下と同じ:
<?php echo $this->formCollection($form, TRUE);
ただし、ラベルと入力を個別にレンダリングすると、次のようになります。
echo $this->formLabel($form->get('Title'));
echo $this->formInput($form->get('Title'));
それは私が望むhtmlを生成します:
<label for="Title">Title</label>
<input type="text" name="Title" placeholder="Insert Title" required="required" value="">
formRow ビューヘルパーで同じことを達成するにはどうすればよいですか?