Hi all,
I have two questions concerning Zend_Form

1) Is there an easy way to add a decorator or utilize another method to get 
Zend_Form_Element_Button to insert additional elements inside its tags, like so 
(notice the <span>'s):
<button type="submit" name="submit"><span>Send</span></button>

2) Is there an easy way to have a Zend_Form_Element rendered between another 
element and its label. Sort of like so (notice gender radio's in between 
contactFullName label and contactFullName input):
<dt>
  <label for="contactFullName" class="required">Naam</label>
</dt>
<dd>
  <label for="contactGender-m"><input type="radio" name="contactGender" 
id="contactGender-m" value="m">Mr.</label><br>
 <label for="contactGender-f"><input type="radio" name="contactGender" 
id="contactGender-f" value="f">Ms.</label>
</dd>
<dd>
  <input type="text" name="contactFullName" id="contactFullName" value="" 
class="text">
</dd>



Thank you in advance for your insights.

_________________________________________________________________
De leukste online filmpjes vind je op MSN Video!
http://video.msn.com/video.aspx?mkt=nl-nl

Reply via email to