In Zend_Form is it possible to prepend an element with a pair of html tags containing text using decorators?How?

Ex:

<div>My text inside html tags prepended..</div><input type='text'>

EDITED:

And what if I want to place a form element in a pair of html tags still containing text?

Ex.

<div>
 This div is containing both my custom text and my form element: 
 <input type='text'>
</div>

thanks

Luca

link|improve this question

80% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Just use

 $element->setDescription("My text");

You can also use a label if you want.

If you need you can use HtmlTag helper to be used by your decorator also, and set the position to be PREPEND.

Edit

$elementDecorators = array(
                                'ViewHelper',
                                array('Label', array( 'tag' => 'span', 'placement' => 'prepend')),
                                array('Description', array( 'tag' => 'div', 'placement' => 'append','class'=>'eDesc')),                                
                                array('HtmlTag', array( 'tag' => 'div', 'class'=>'userElement'))
);

$element->setDecorators( $elementDecorators);
link|improve this answer
Thanks please see the edited question!=) – luca May 26 '11 at 12:56
Updated with some sample options you can add. – Layke May 26 '11 at 13:12
feedback

Your Answer

 
or
required, but never shown

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