trentrichardson / jQuery-Timepicker-Addon

Adds a timepicker to jQueryUI Datepicker
http://trentrichardson.com/examples/timepicker/
MIT License
2.66k stars 1.05k forks source link

jQuery.datepicker.parseDateTime fails #736

Open lofwyr14 opened 10 years ago

lofwyr14 commented 10 years ago

Calling

jQuery.datepicker.parseDateTime("m/d/y", "h:mm TT", "3/7/00 8:05 PM")

results to "Error: Wrong time format"

Workaround:

jQuery.datepicker.parseDateTime(
  "m/d/y", "h:mm TT", "3/7/00 8:05 PM", null, {timeFormat:"h:mm TT"})
lofwyr14 commented 10 years ago

Tested with 1.4.5

garybond commented 9 years ago

Thanks for the workaround!