I'm a real newbie in programming and finally got the ZendX Jquery to work. However, I would like to include a date time picker, and found an option at http://www.binpress.com/app/zfdatetimepicker/85 . However, the documentation is not complete and I would really want to set it up correctly. Can anyone help me with the steps required to do so? I tried setting it up and got the error " Object doesn't support property or method 'datetimepicker'". Thanks.
Asked
Active
Viewed 1,038 times
0
-
Nvm, I got it to work. My include path for the .js file was wrong. – John Wayne Aug 06 '12 at 17:16
-
how can you include your .js file please paste code – Jalpesh Patel Aug 07 '12 at 05:04
1 Answers
1
It sounds like you need to include the jquery UI script files. Looking at his demo, it is pulling in jQuery UI 1.8.21 from jquery's 'code' servers. I also know that without the UI component included, you will get the error message Object doesn't support property or method 'datepicker'
when you do something like $('#myDate').datepicker
. So I'm assuming you're just missing the correct script includes.
I've not used zend-framework at all, so I might be missing something on that side.

Patrick M
- 10,547
- 9
- 68
- 101