如何通过装饰器添加checkbox元素的标签?
答案 0 :(得分:1)
$this->getElement('elementId')->addDecorator('Label'); ?
您也可以选择展示位置:
$this->getElement('elementId')->addDecorator('Label', array('placement' => 'APPEND'))
或者通过一般的装饰设置来完成:
'decorators' => array(
array('ViewHelper'),
array('Label', array('placement' => 'APPEND'))
)
实际上所有信息都可以在http://framework.zend.com/manual/en/zend.form.standardDecorators.html
获得