I am developing a Google Chrome extension. I am trying to use jquery-ui datepicker in the jquery-ui dialog of an existing web page (content level)
Also: Screenshot
I get "DP_jQuery_1274168529407 not defined" when I press any button on the datepicker widget, and I think this is because the jquery datepicker adds to the html:
onclick="DP_jQuery_1274192751418.datepicker._selectDay('#new\\-app\\-date',4,2010, this);return false;"
This means that I will have to change the datepicker library to avoid changing the html, but rather attach an event to each object as follows:
.click(function(){DP_jQuery_1274192751418.datepicker._selectDay('#new\\-app\\-date',4,2010, this);return false;})
This will probably keep the security area
What do you think?
Kamimark