ZF-8129: Missing Description Decorator
Description
Hi,
The default decorators for ZendX_Jquery form elements are:
$this->addDecorator('UiWidgetElement')
->addDecorator('Errors')
->addDecorator('HtmlTag', array('tag' => 'dd'))
->addDecorator('Label', array('tag' => 'dt'));
But should be actually:
$this->addDecorator('UiWidgetElement')
->addDecorator('Errors')
->addDecorator('Description')
->addDecorator('HtmlTag', array('tag' => 'dd'))
->addDecorator('Label', array('tag' => 'dt'));
So to make the elements defaults compatible with Zend_Form_Element's...
Comments
Posted by Benjamin Eberlei (beberlei) on 2009-10-23T12:17:55.000+0000
Resolved in trunk, merged back into 1.9 release branch.