-- Codiac <[EMAIL PROTECTED]> wrote (on Wednesday, 06 August 2008, 11:43 AM -0700): > Since my latest Zend Framework Core update I found out the rendering of the > fieldset id attribute in a form has once again changed. That's three times > now in the past few months. > > It went from (in my case): > > buttons (my original displayGroup name) > > to > > buttons-fieldset
The above was in a release candidate... > to > > fieldset-buttons ...and this was due to bugs filed against the release candidate and is in current trunk. The reason for the change in the first place was to prevent duplicate ids being generated (for instance, so the form and the fieldset it defines as a decorator do not share the same id). The reason it switched from appending to prepending was so to ensure they never start with integers (which violates DOM). > It's driving me nuts! %-| I've got dozens of forms where I let Zend_Form > render the fieldset id attribute and I have to keep changing my CSS files. > Make up your mind! :teeth: The above will be the final change. One note: you may not want to track trunk for projects that you're going to release to production; that way you can change _once_ when you switch to a stable release tag. -- Matthew Weier O'Phinney Software Architect | [EMAIL PROTECTED] Zend Framework | http://framework.zend.com/
