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

Popular posts from this blog

.htaccess - First slash is removed after domain when entering a webpage in the browser -

Automatically create pages in phpfox -

c# - Farseer ContactListener is not working -