I\'m using the bootstrap ready date time picker from http://eonasdan.github.io/bootstrap-datetimepicker/ and it\'s working nicely but for one issue. I have a picker setup just f
You can also use the parameters "use24hours" and "language" to do this, as follows:
$(function () { $('.datetime').datetimepicker({ language: 'pt-br', use24hours: true, }); });