I want to use bootstrap datetimepicker without select time, but it does not work. I gave a false value to the pickTime parameter, but it still does not work. But format and language options work.
Here is the code! How can i fix this?
<script type="text/javascript"> $(function () { $('#datetimepicker1').datetimepicker({ format: "dd MM yyyy", pickTime: false, autoclose: true, todayBtn: true, language: 'tr', pickerPosition: "bottom-right" }); }); </script> <div class='input-group date' id='datetimepicker1'> <span class="input-group-addon">Birtdate</span> <input type='text' class="form-control" /> <span class="input-group-addon"> <span class="glyphicon glyphicon-calendar"> </span> </span> </div>
javascript jquery twitter-bootstrap twitter-bootstrap-3 datetimepicker
Emre Begen
source share