Hi all, I've been messing around with Zend_Form and I'm happy thus far. But, I'm having an issue with what I think should be an easy task. I like the current rendering in dl's.. But I'm trying to add a div or span immediately after the <input> tag to be a field note/description. Here's my desired result:
<dt><label for="username">Username</label></dt> <dd><input type="text" name="username" id="username" value="" /><div class="form-note"> Minimum of 4 characters, Maximum of 32 characters.</div></dd> I've been trying a variety of different methods including using my own decorators. For some reason I imagined that a simple modification like this would be a bit easier to do. Any recommendations? I started writing up another decorator to be a Hint/Desc/Note area, but wanted to see if there was a different approach. Regards, Jay M. Keith
