我正在向现有表单添加同意复选框。我无法将标签呈现在复选框的右侧。我究竟做错了什么?
请注意,复选框是使用创建的,$this->addElement(
因为表单的其余部分都是以这种方式创建的。
我提前谢谢你。
$this->addElement('checkbox', 'isUserConsent', array(
'options' => array(array('placement' => 'APPEND')),
'label' => 'Plz activate',
'validators' => array(
array('InArray', false, array(
'hay' => array(1),
'messages' => 'Please check the consent box'),
)
),
'decorators' => array('ViewHelper','Errors','Label'),
));