Adding a class to the $tag surrounding a <label> in a Zend_Form with the Label decorator
- by Roderik
I'm trying to get the following html out of Zend_Form
<div class="group wat-cf">
<div class="left">
<label class="label right">Username</label>
</div>
<div class="right">
<input type="text" class="text_field">
</div>
</div>
Using the following code:
…