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

milliseconds gets auto updated when we click enter ( same goes for MicroSeconds ) #948

Open dpatel44725 opened 6 years ago

dpatel44725 commented 6 years ago

Hello,

i really like this plugin. this is a life saver. But i needed to use Milliseconds and Microseconds in my projects. so I used Format to do that. This is my code


$(id).datetimepicker({
            timeInput : true,
            timeFormat : "HH:mm:ss:l",
            showHour : false,
            showMinute : false,
            showSecond : false,
            showMillisec : false,
        });

when i try to edit the Milliseconds and click Enter then Milliseconds updates to the current time. and other remains as it is.

Can some one please help me with this ?