how to add decoratives in select box in zend framework Form -
i new zend want add decoratives,size in select box
example this
'required' => true,
'filters' => array('stringtrim'),
'style' => array('width:103px'), 'multioptions' => $list,
'decorators'=>array(
'viewhelper','errors' ), this code
$companyname = new zend_form_element_select('companyname'); $this->addelement($companyname);
your question isn't clear, can supply array of options second parameter form element:
$companyname = new zend_form_element_select('companyname', array( 'required' => true, 'filters' => array('stringtrim') )); $this->addelement($companyname);
Comments
Post a Comment