bootstrap-datetimepicker icon indicating copy to clipboard operation
bootstrap-datetimepicker copied to clipboard

Both Date and Time picker widget based on twitter bootstrap (supports Bootstrap v2 and v3)

Results 103 bootstrap-datetimepicker issues
Sort by recently updated
recently updated
newest added

Could you update the plugin to support font awesome 4 :)?

506 line : `top=top+document.body.scrollTop` is a bug. delete it

This should resolve #209. Testing: - Ensure Date pickers near the bottom of the page do not go off screen and instead open above the input - Ensure default positioning...

I have identified where this come from: [https://github.com/smalot/bootstrap-datetimepicker/blob/master/js/bootstrap-datetimepicker.js#L449](url) You only check if the `d` is not `null` but in my case is `undefined` and the function continues. I have the...

In our scenario, we are using a checkbox in an add-on to date textbox. But the setValue function was setting value for all inputs in input-group. The fix is preventing...

KeyboardNavigation doesn't work when i press the button of calendar. Do you have a question to solve the question?

![default](https://user-images.githubusercontent.com/9550275/29113951-488026b2-7d25-11e7-8d45-4d03e5ff7070.png) Now month should be August ,but just can select Jun. here is my js code: `function form_month(element){ if($(element).attr("init")!="Y"){ $(element).datetimepicker({ format : "yyyy-mm", language : "zh-CN", autoclose : true, todayBtn...

The `initialDate` option does not override the input element's value. If it did, I could more easily get around issue https://github.com/smalot/bootstrap-datetimepicker/issues/309 by passing in the `initialDate` (as a modified version...

$("#TravelStartDate").datetimepicker({ format: "dd/mm/yyyy HH:ii P", showMeridian: true, autoclose: true, todayBtn: true }).on('changeDate', function (ev) { $('#TravelEndDate').datetimepicker('setEndDate', '07/08/2017'); }); $("#TravelEndDate").datetimepicker({ format: "dd/mm/yyyy HH:ii P", showMeridian: true, autoclose: true, todayBtn: true }).on('changeDate',...