Unable to close datepicker inside dialog in IE
My problem occurs in IE only. Having a dialog with a form with a datepicker like this:
And in IE only, it's impossible to close the datepicker. Any idea anyone?
The datepicker setup like this:
- $(function() {
- $("#annualSalaryDate").datepicker({
- showOn: 'button',
- showButtonPanel: true,
- buttonImageOnly: true,
- buttonImage: 'images/calendar.gif'
- });
- });
The dialog options:
- var setupAnnualSalaryDialog = {
- autoOpen: false,
- modal: true,
- height: 250,
- width: 450,
- position: [640,50]
- };
Frode Kristiansen