我需要将自定义属性(id, class)
添加到Zend_Form_Element_Select
。
我该怎么做?
答案 0 :(得分:2)
在实例化元素时,您可以传入“attribs”数组。例如:
$form->addElement('select', 'type', array(
'label' => 'Label',
'multioptions' => $some_array,
'attribs' => array('class' => 'selector', 'id' => 'whatever')
));
答案 1 :(得分:0)
AFAIK无法在选择选项中添加ID。选项是实现您自己的viewHelper并添加此功能。但一般来说,这是不可能的。