I'm currently working Zend framework and placing Zendx_Jquery_Form in Jquery Dialog Container
Just wanted to know is there a way to insert html code (so i can put a picture in there) to the Jquery Dialog Container in zend framework.
This is my code to declare my Zend form in Jquery Dialog Container
public function setSubFormDecorators(Zend_Form_SubForm $subForm)
{
$subForm->setDecorators(array(
'FormElements',
'Form',
array('DialogContainer', array(
'title' => 'MY FORM',
'id' => 'tabContainer',
'jQueryParams' => array(
'width' => auto,
'height' => auto,
'draggable' => true,
'resizable' => false,
'position' => 'middle',
'zIndex' => 80
),
)),
));
return $this;
}
Thanks so much in advance!