I have the following code in my 'Default_Form_Registration' class (inside _init method):

$fullname = $this->addDisplayGroup(
                       array('firstname', 'lastname'),
                       'fullname');
$fullname->setLegend('Full Name');

My form is being displayed properly (elements inside the fieldset), however there is no legend being displayed. I have not changed the decorators at all, using default decorators.

What am I doing wrong?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You can pass options to the addDisplayGroup through the 3rd param:

 $fullname = $this->addDisplayGroup(
                   array('firstname', 'lastname'),
                   'fullname', array('legend' => 'Full Name'));

Also, as a note, addDisplayGroup returns Zend_Form and not the display group.

If you want to use the setLegend method, you need to do like this:

 $this->getDisplayGroup('fullname')->setLegend('Full Name');
link|improve this answer
meh, I thought I tried that, apparently not, that worked (the third parameter array('legend' => 'Full Name') fixed the problem. Thanks +1 – Aaron Murray Jul 17 '11 at 17:47
feedback

Your Answer

 
or
required, but never shown

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