Displaying 1 result from an estimated 1 matches for "version_release_d".
2011 May 04
0
using jquery datepicker within a jquery dialog
so I have datepicker working just fine in a normal window but I cannot
for the life of me get it to work within a dialog.
I have some javascript that opens a dialog in my application.js file
as well as the datepicker js
is as follows:
$(function() {
$("#version_release_date").datepicker({dateFormat: ''yy-mm-dd''});
});
$(document).ready(function() {
$(''a.popup'').click(function() {
$(''<div />'').appendTo(''body'').load($(this).attr(''href'') + ''
form'...