I\'m trying to remove the default decorators on a hidden form element. By default, the hidden element is displayed like this:
Hidden Element Label
I couldn't get disableLoadDefaultDecorators to work quite right. Here's a solution I came up with.
$hiddenIdField = new Zend_Form_Element_Hidden('id');
$hiddenIdField->setValue($portalId)
->removeDecorator('label')
->removeDecorator('HtmlTag');
In the HTML, the hidden field appears without any extra tags around it.
...
...