如何在Zend Framework 2.2.4中为表单元素添加类和id

时间:2013-10-04 09:48:23

标签: php zend-framework

我需要的HTML:

<label for="text_field_username">User Name</lable>
<input type="text" id="text_field_username" name="text_field_username" class="form-control" />

我希望标签的for链接到输入的id。这样,用户可以单击标签以突出显示输入。对于复选框更有用。 另外,不太重要,我希望在输入字段中有一个类。

我尝试过但对我不起作用:

echo $this->formRow($form->get('usr_name'));

我也试过使用局部布局。

echo $this->formElement($element);

在发布此问题之前,我遇到了此文档 framework.zend.com/manual/2.2/en/modules/zend.form.view.helpers.html#formlabel

它不起作用。它添加了for但它没有任何意义。 !?

2 个答案:

答案 0 :(得分:10)

查看partials帮助呈现表单,但它们不处理表单元素本身的属性。这由表单类及其表单元素集合(即文本元素)

处理

您可以在任何表单元素上使用setAttribute('class', 'class name')

因此,在表单的init()方法中,这应该有效:

$element = $this->getElement('text_field_username');
$element->setAttribute('class', 'class name');

答案 1 :(得分:8)

您也可以在继承的表单助手类中设置它,如下所示:

namespace Application\Form;
use Zend\Form\Form;
class NexForm extends Form
{
public function __construct($name = null)
{
    parent::__construct('Nex');
    $this->setAttribute('method', 'post');
    $this->setAttribute(
        'enctype',
        'multipart/form- data'
    );
    $this->add(array(
        'name' => 'default_widget',

        'attributes' => array(
            'type' => 'text',
            'id'   => 'default_widget',
            'class' => 'mtz-monthpicker-widgetcontainer',
            'required' => 'required',
        ),
        'options' => array(
            'label' => 'Please choose the month of records you want to display:',
        ),
    ));
}
}

并在您的视图中致电:

     $nex=$this->app;   //app is the form object we passed from controller to view
     echo $this->formElement($nex->get('default_widget'));