javascript - Twitter Bootstrap timepicker without AM/PM button in View side -
i have timepicker bootstrap: http://jsfiddle.net/c3b4t/66/ (demo)
now whant hide am/pm, possible javascript. or have remove bootstrap.timepicker.js?
i have try this:
$('#timepicker1').timepicker({ defaulttime: 'value', minutestep: 1, disablefocus: true, format: 'hh:mm', template: 'dropdown' });
but not working.
realy help
add option showmeridian
follows,
$('#timepicker1').timepicker({ defaulttime: 'value', minutestep: 1, disablefocus: true, template: 'dropdown', showmeridian:false });
Comments
Post a Comment