There is no direct option for it, however it can be done (as a workaround) by taking help of editorKeyDown event.
keyUpDown option should also be true.
editorKeyDown: function(evt, ui){
if(evt.keyCode == 13){ //enter key.
evt.originalEvent.keyCode = 40;//disguise down key.
}
},