Zend_Form_Element 行中的标签和行中的元素
如何装饰 zend 表单元素以将标签放入 tr 并将元素放入 tr
<tr><td><label>name</label></td></tr>
<tr><td><input type="text"/></td></tr>
我使用此代码
$this->setElementDecorators(
array('ViewHelper',
array(array('data'=>'HtmlTag'),array('tag'=>'td','class'=>'element_td')),
array('Label',array('tag'=>"td")),
array(array('row'=>'HtmlTag'),array('tag'=>'tr'))
)
);
,但它在同一行中生成标签和元素[tr] 我想要行中的标签和另一行中的元素如何做到这一点?
how to decorate zend form element to put label in tr and element in tr
<tr><td><label>name</label></td></tr>
<tr><td><input type="text"/></td></tr>
i use this code
$this->setElementDecorators(
array('ViewHelper',
array(array('data'=>'HtmlTag'),array('tag'=>'td','class'=>'element_td')),
array('Label',array('tag'=>"td")),
array(array('row'=>'HtmlTag'),array('tag'=>'tr'))
)
);
but it produce label and elemment in same row[tr]
i want label in row and the element in another row how to do this??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用装饰器来做到这一点有点棘手,但这是可能的。由于您想要将两个单独的组件包装在彼此独立的标签中,因此您必须首先使用 HtmlTag 装饰器包装其中一个组件,然后通过在其后附加装饰器来构建另一个组件(或者可选地以另一种方式)周围和前置):
It's a bit tricky to do this with the decorators, but it's possible. Since you want to wrap two individual components within tags that are separate from each other, what you must do is first wrap one of them using the HtmlTag decorator, and after that build the other one by appending decorators after it (or optionally the other way around and prepending):