Search code examples
tempus-dominus-datetimepicker

How to show 24 hour time picker in tempusdominus plugin


I'm using this plugin https://tempusdominus.github.io/bootstrap-4/

to insert a datetimepicker. I would display time picker showing time in 24 hours (i.e not showing 02:00 PM but 14:00). There a way to perform this, with tempusdominus plugin. I follow the guide, but it still display time with AM and PM. Thanks.


Solution

  • In your jQuery you should set format from LT to

    format:'HH:mm';
    

    If you want the date and time just set

     format: 'dddd, MMMM Do YYYY, HH:mm';
    

    You can find all your formats at Formats