Zend Form display groups and decorators with example Zend Framework Weblog appears to have the answer.
Code:$form->addElement( $first_name ); $form->addElement( $surname ); $form->addDisplayGroup(array('first_name','surname'), 'individual'); $form->setDecorators(array( 'FormElements', array('HtmlTag',array('tag'=>'div','id'=>'blah')), 'individual' ));


LinkBack URL
About LinkBacks



Reply With Quote
