ZendX Jquery Decorator
- by iJD
How use partial decorator in Jquery Element
I use this code for Form Element:
$title = new Zend_Form_Element_Text('title');
$title->setRequired(true)
->setAttrib('class', 'inputbox')
->setLabel('Title');
$title->viewScript = 'RegElement.phtml';
$title->setDecorators(
array(
…