My Datetime picker is working fine but the arrow to navigate through time and day are not showing properly.
Safari
Chrome
I\'ve tried to set back th
If you're using Bootstrap V4, Glyphicons have been been removed. I fixed the missing arrow by using Fontawesome. Add these to the icons option.
$('.dateP').datetimepicker(
{
icons:
{
next: 'fa fa-angle-right',
previous: 'fa fa-angle-left'
},
format: 'DD/MM/YYYY',
widgetPositioning: {
horizontal: 'right',
vertical: 'auto'
}
});