Today button has a strange behaviour. When autoclose parameter is set to True, after clicking "Today" on calendar widget widget is closing without setting current date. Don't know how to fix it.
My javascript:
$(document).ready(function () {
$('#datepicker').datepicker({
todayHighlight: true,
todayBtn: true,
keyboardNavigation:true,
autoclose: true,
startView:3
})
})
Fixed in bf1b2c820076e3e11b0199abe43d00ddcc645995
If you wish the today button to set the date on the input and autoclose after that, use todayBtn: 'linked'
thanks
Most helpful comment
Fixed in bf1b2c820076e3e11b0199abe43d00ddcc645995
If you wish the today button to set the date on the input and autoclose after that, use
todayBtn: 'linked'