From manual: https://eonasdan.github.io/bootstrap-datetimepicker/Options/#keybinds
'delete': function () { this.clear(); }
I try to disable handler:
keyBinds: {'delete': function() {} }
But it's don't effect. How make when "delete" key pressed, clear only one symbol from cursor?
Use null value instead of function.
keyBinds: {
'delete':null
}