Search and Top Navigation
#9176 closed bug (duplicate)
Opened March 21, 2013 11:29PM UTC
Closed March 22, 2013 01:43AM UTC
Datepicker: showAnim: 'blind' causes
Reported by: | NabiKAZ | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | none |
Component: | ui.datepicker | Version: | 1.10.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
If there are two datapiker on the page. and it used 'showAnim' option.
When click on first textbox then show datapiker, But when click on other textbox, don't show datapiker, and must click on one point of the page and click back on textbox to show datapiker!
This bug exist just when use 'showAnim' option. for example, see this code:
<script> $(function() { $( "#datepicker1" ).datepicker({ 'showAnim':'fold' }); $( "#datepicker2" ).datepicker({ 'showAnim':'fold' }); }); </script> Date1: <input type="text" id="datepicker1" /> Date2: <input type="text" id="datepicker2" />
If click on first textbox, and then click on second textbox, see hide datapiker!!!
Sample: http://jsfiddle.net/NabiKAZ/gXBD9/