Datepicker as dialog error
I'm getting a strange result when I setting a div as a datepicker. I
have it set to be a dialog so that it can be displayed when the user
clicks a link.
When the calendar displays, there appears to be a input box in the
upper left hand corner of the dialog. If you click in it the dialog
disappears. It doesn't appear to do anything, it just looks really
odd.
Here's the div statement:
<div id="datepickerReRun" ></div>
Here's the javascript:
$("#datepickerReRun").datepicker('dialog',"",function() {
var href = $("#ExpiredLettersLink > a").attr("href") + "&ExpireDate="
+ this.value;
window.location.replace(href);
loadAfterClicks();
}, {changeMonth: false, changeYear: false, dateFormat: "yy-mm-dd"});