Hello,
I am interested in creating a form with a calendar element. I decided to
use jQuery date picker, but I don't know how to integrate it into the
form. Bellow is the form code:
$form = new Zend_Form();
$form->setName('form_add_service');
$form->setMethod('post');
$element = new Zend_Form_Element_Text('date_start');
$element->setLabel('Start Date');
$element->setRequired(true);
$form->addElement($element);
I want to "tell" to the element to be jQuery date picker. Is there any
way to do it ?
Thanks in advance,
S.G.