bootstrap-datetimepicker
bootstrap-datetimepicker copied to clipboard
Both Date and Time picker widget based on twitter bootstrap (supports Bootstrap v2 and v3)
Could you update the plugin to support font awesome 4 :)?
top
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?
 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',...