Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

jQuery UI datepicker opens automatically within dialog

I have a datepicker which is used within the jQuery dialog object. The source of the dialog's content is loaded using .load(). Within the dialog I created a script which creates a datepicker for the text input.

$("#date").datepicker({ ... }); 

When I open the dialog for the first time - everything is okay, but if I close it and reopen again, the datepicker is triggered automatically (and there's no such an option like autoOpen:false) Is there any way of preventing this or what am I doing wrong?

like image 835
turezky Avatar asked May 31 '09 16:05

turezky


1 Answers

Much simpler way I found:

$("#dialogPopper").click(                     function() {                         $("#date").datepicker("disable");                         $("#dialog").dialog("open");                         $("#date").datepicker("enable");                         return false;                     }                   ); 
like image 63
Hupperware Avatar answered Oct 03 '22 12:10

Hupperware