Hi

i have a problem in Multiselect selected values. it should select 'My
Community for Friends'
this value, but it is not working. 

$aGroups = Array ( [3] => My Community for Friends [4] => Electronics )

$sGroup = Array ( [0] => 3 ) 

$groups = new Zend_Form_Element_Select('group');
                
                        $groups ->setLabel('Groups:')
                                          
->setDecorators($this->elementDecorators)
                                          ->setRegisterInArrayValidator(false)
                                          ->setValue($sGroup)
                                          ->setAttrib('multiple','multiple')    
                                  
                                          ->addMultiOptions($aGroups);
                                                                
                $this->addElement($groups);




-- 
View this message in context: 
http://www.nabble.com/Multiselect-selected-values-tp22125736p26075028.html
Sent from the Zend Framework mailing list archive at Nabble.com.

Reply via email to