vote up 0 vote down star

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'.

flag

2 Answers

vote up 3 vote down check

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|flag
vote up 0 vote down

Hi,

i think this should work:

$form->setDefault('user', 'value'); // Set default value for element
link|flag
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 at 13:23

Your Answer

Get an OpenID
or

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