As an option, you can try to override this behavior by assigning another keydown event handler to your input after the date is initialized, and check for an input key
$('#your_input_id').keydown(function(e){
if(e.which == 13) {
$('#your_form_id').submit();
return false;
}
});
source
share