how can i go abt setting up default decorators for all my forms & form elements? currently in individual forms i do something like
// in init()
...
$this->setElementDecorators(array(
'ViewHelper',
'Errors',
array('Description', array('tag' => 'p')),
'Label',
array('HtmlTag', array('tag' => 'p'))
));
$this->getElement('btnLogin')->removeDecorator('Label');
$this->setDecorators(array(
'FormElements',
array('Errors', array('placement' => 'PREPEND')),
'Form'
));
one part i see maybe harder is i want my submit buttons not to have a label.