如何在Zend_Form_Element_Select的选项中添加属性(例如id)?

时间:2011-06-18 15:28:33

标签: zend-framework

我需要将自定义属性(id, class)添加到Zend_Form_Element_Select

的选项中

我该怎么做?

2 个答案:

答案 0 :(得分:2)

在实例化元素时,您可以传入“attribs”数组。例如:

    $form->addElement('select', 'type', array(
        'label' => 'Label',
        'multioptions' => $some_array,
        'attribs' => array('class' => 'selector', 'id' => 'whatever')
    ));

答案 1 :(得分:0)

AFAIK无法在选择选项中添加ID。选项是实现您自己的viewHelper并添加此功能。但一般来说,这是不可能的。