Hi,
Im using a JQuery DatePicker in a Zend Framework based application Form. Here is the code for the date picker
$this->addElement('datePicker','movie_release_date', array(
'label' => 'Release Date:',
'required'=> false
)
);
By default, when you pick the date, it is stored in the text input like 'mm/dd/yyyy'
But I want to have it like 'yyyy-mm-dd'
I tried many options like dateFormat, format, etc, within the addElement method, but nothing worked!
Please help! Im stuck and couldn't find anything about that on the forums....