I need to have a click to edit element on a page, that will in turn invoke an instance of the jQuery UI Datepicker.
Currently, I\'m using JEditable to provide the i
I had the same problem. Searching inside the sourcecode of http://www.appelsiini.net/projects/jeditable/custom.html brought me to the solution.
There is a "jquery.jeditable.datepicker.js". Putted this in my code an added a new function "datepicker" (also in the source).
I don't know how your script works but in my case the function additionally needs:
id : 'elementid',
name : 'edit'
to store the data in the database.
hth :)
dabbeljuh