Witam
chciałbym dodać <br/> przed </form> w Zend_Form
mój form wygląda tak
<?php
class Admin_Form_Page extends Zadoo_Form {
function init ()
{
$this
->setAction($this->getView()->url())
->setMethod('post')
->setAttrib('id', 'adminForm')
;
// tutaj są poszczególne elementy formularza
$this->addDisplayGroup(
'tresc',
);
$this->addDisplayGroup(
array('title', 'published', 'frontpage', 'categoryid', 'visible_from', 'visible_to', 'access'), 'ustawienia',
array('legend' => 'Ustawienia') );
$text = $this->getDisplayGroup('tresc');
$text->setDecorators(array( array('HtmlTag',array('tag'=>'div', 'style'=>'width:720px; float:left')) ));
$ustawienia = $this->getDisplayGroup('ustawienia');
$ustawienia->setDecorators(array( array('HtmlTag',array('tag'=>'div','style'=>'width:220px; float:right')) ));
}
}