Ticket #3258 (closed bug: fixed)

Opened 2 years ago

Last modified 22 months ago

setDate opens not closeable datepicker if showOn is set to 'focus' or 'both'

Reported by: anonymous Owned by: grabanski
Priority: minor Milestone: TBD
Component: ui.datepicker Version: 1.6b
Keywords: Cc:

Description

If I try to set a date on an input field through the setDate method:

$("input[name=input1]").datepicker("setDate",date);

It shows a datepicker (I think this is because it gets the focus) that is not closeable either by calling:

$("input[name=input1]").datepicker("setDate",date).datepicker("hide");

or

$("input[name=input1]").datepicker("hide");

or even clicking in the close button on the datepicker itself. The only way to hide the datepicker is to open another one.

It does not happen setting the showOn to 'button' so I think is related to the input getting the focus.

Change History

Changed 22 months ago by kbwood

  • status changed from new to closed
  • resolution set to fixed

Fixed. Only moves focus if the datepicker is already showing for that input field.

Note: See TracTickets for help on using tickets.