
Untitled
By: a guest on
Jun 2nd, 2012 | syntax:
None | size: 0.62 KB | hits: 11 | expires: Never
$fromSubForm = new Zend_Form_SubForm();
$this->setDefaultDecorators($fromSubForm);
//Add Elements
$fromSubForm->addElement(
'select', 'ytitle', array(
'label' => 'Title',
'required' => true,
'multioptions' => array(
'default'=>'* select title',
'mr'=>'mr',
'mrs'=>'mrs',
'ms'=>'ms'
),
'filters' => array('StringTrim'),
'decorators' => array(
'ViewHelper',
'Errors',
'Label',
array('HtmlTag', array('tag' => 'div', 'class' => 'test class')))
));