I am adding a select element to a Zend_Form instance as follows:

  $user = $form->createElement('select','user')->setLabel('User: ')->setRequired(true);
  foreach($users as $u)
    	{
    		if($selected == $u->id)
    		{
    			$user->addMultiOption($u->id,$u->firstname.' '.$u->lastname);
    			//*** some way of setting a selected option? selected="selected"

    		}
    		else
    			$user->addMultiOption($u->id,$u->firstname.' '.$u->lastname);
    	}

I have been searching the docs but cannot find a simple way of pre-setting an option of the select element to 'selected'.

link|improve this question

75% accept rate
feedback

3 Answers

up vote 16 down vote accepted

I've just worked out how to do it.

You have to use the setValue() method of the element:

$user = $form->createElement('select','user')->setLabel('User: ')->setRequired(true);
	foreach($users as $u)
		$user->addMultiOption($u->id,$u->firstname.' '.$u->lastname);

$user->setValue($selected); //$selected is the 'value' of the <option> that you want to apply selected="selected" to.
link|improve this answer
1  
thx. saved me some time. – easement Jul 6 '10 at 14:57
feedback
$form->addElement('select','foo',
array(
        'label'        => 'ComboBox (select)',
        'value'        => 'blue',
        'multiOptions' => array(
            'red'    => 'Rouge',
            'blue'   => 'Bleu',
            'white'  => 'Blanc',
        ),
    )
);

As above, you can use 'value' => 'blue' for making 'blue' => 'Bleu' selected.

I hope this will help you..

link|improve this answer
this code helps us in creating an element through addElement rather than createElement above – emaillenin Feb 10 '11 at 5:16
feedback

i think this should work:

$form->setDefault('user', 'value'); // Set default value for element
link|improve this answer
That doesn't seem to work. I have set 'value' to the corresponding value of the <option> that i want to apply selected="selected" to but it does not get set to the selected state. – Tom Oct 19 '09 at 13:23
setDefault() is a form method. Tom's solution, setValue(), is an element method. It just depends which object you're working with when setting the value. – Sonny Sep 21 '10 at 19:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.