For example in view_list_editable.js:483 by Sale Order creation.
keyup_ENTER: function () {
return this._next();
},
Something like what does't worked for me:
$(':input').bind('keypress', function(event) {
if(event.which === 13) {
$(this).nextAll(':input').first().focus();
}
});