我在Zend Framework中创建“三列表”表单时遇到了一些问题:
我已经用拖柱表装饰了Zend Form:
表有两列,第一列用于标签,第二列用于Zend_Form_Element,效果很好,但是, 我想添加第三列并放置小图像 - 问号,我将在其中设置javascript。
如何为此设置装饰?
两列表的当前装饰是:
<?php
class Application_Form_Login extends Zend_Form {
public function init() {
// create decoration for form's elements
$elementDecoration = array(
'ViewHelper',
'Description',
'Errors',
array(array('data'=>'HtmlTag'), array('tag' => 'td', 'valign' => 'TOP')),
array('Label', array('tag' => 'td')),
array('Errors'),
array(array('row'=>'HtmlTag'),array('tag'=>'tr'))
);
$buttonDecoration = array(
'ViewHelper',
array(array('data' => 'HtmlTag'), array('tag' => 'td')),
array(array('label' => 'HtmlTag'), array('tag' => 'td', 'placement' => 'prepend')),
array(array('row' => 'HtmlTag'), array('tag' => 'tr')),
);
$formDecoration = array(
'FormElements',
array(array('data'=>'HtmlTag'), array('tag'=>'table', 'class'=>'forms')),
'Form'
);
// create form elements
$username = new Zend_Form_Element_Text("username");
$username->setLabel('Username: ')
->setDecorators($elementDecoration);
$password = new Zend_Form_Element_Password("password");
$password->setLabel('Password: ')
->setDecorators($elementDecoration);
$submit = new Zend_Form_Element_Submit('Login');
$submit->setLabel('LOGIN')
->setDecorators($buttonDecoration);
$this->setDecorators($formDecoration);
// set created form elements
$this->setAction('')
->setMethod('post')
->addElement($username)
->addElement($password)
->addElement($submit);
}
}
答案 0 :(得分:1)
这取决于您是否只需要添加<td class="fieldTip"></td>
,或者是否需要在<td></td>
内添加内容。
在第一种情况下,您只需要在Label装饰器后面添加一个简单的HtmlTag装饰器:
array('HtmlTag', array('tag'=>'td','class'=>'fieldTip','placement'=> 'APPEND'))
如果你想对字段进行某种描述,你应该使用描述装饰器和$ element-&gt; setDescription()方法,然后执行一些css / js,将其显示为工具提示。
修改强>
我刚刚回答了关于简单自定义装饰器的其他问题,您将在我给出Zend Form Element with Javascript - Decorator, View Helper or View Script?的示例中找到您需要的内容。只需用您需要的任何内容替换<script>
部分。