-- zendworker <[email protected]> wrote (on Thursday, 02 April 2009, 10:37 AM -0700): > I was wondering if it was possible to add certain elements to a display > group, but have them not be decorated by the groups decorator. For example, > I have a group using a fieldset that also wraps its elements in a dl. I > would like to add an element that will be inside the fieldset but not in the > dl. Like:
Use a combination of sub forms and display groups. While sub forms are typically used to semantically group elements, they can also be used for display purposes. (Display groups are only for display purpose.) > <fieldset> -- start group > <dl> > ... most of the elements > <dt></dt> > <dd></dd> > ... > </dl> > <elements outside of dl> > . > . > </fieldset> -- end group > > My first thoughts were nested groups, which aren't supported. But maybe > there's a way to accomplish this and I'm missing it. I work with a designer > that creates most of the markup and css. For the most part he's able to > design things that work easily with the decorator functionality, but there > are times when I feel like its not possible to accomplish what he designs > (barring a totally hand made view script). Any help is much appreciated. -- Matthew Weier O'Phinney Software Architect | [email protected] Zend Framework | http://framework.zend.com/
