Render hidden element with out decorator in Zend Framework

When you add hidden element on the zend form, you would see the hidden elements taking up places wrapped by dt dd tags.
To get rid of that and view only the hidden element, do:
$form->addElement(‘hidden’, ‘somename’, array(‘decorators’=>’ViewHelper’)); – this would render it without the decorators.