Код: Выделить всё
$is_private = new Zend_Form_Element('is_private', array(
'elemName'=>'is_private',
'type' =>'radio',
'multiOptions' => array('Y'=>' Yes ', 'N'=>' No'),
'labelClass'=>'inline',
'spanClass'=>'lbl',
'setValue'=> 'Y',
'checked'=>'checked',
'decorators' => array($radiodecorator),
));
Подробнее здесь: https://stackoverflow.com/questions/210 ... ot-working