この要素をフォームに追加すると、ラベルがうまく装飾されません。Zend形式のラベルでラジオボタンを装飾する方法、つまり、ラベルとラジオボタンを1行で表示する方法...
$this->addElement('radio', 'FORM_EXITS',
array('decorators' => $this->elementDecoratorsTr ,'label' => 'Exists :',
'multiOptions' => array(
'1' => 'Yes',
'0' => 'No',
),
'Separator' => ''
));
public $elementDecoratorsTr = array(
'ViewHelper',
'Description',
'Errors',
array(array('data'=>'HtmlTag'), array('tag' => 'td')),
//array('ViewScript', array('viewScript' => 'users/adduser.phtml')),
array('Label', array('tag' => 'td', 'style' => 'float:right;')),
array(array('row'=>'HtmlTag'), array('tag'=>'tr', 'closeOnly' => true))
);