forked from Techsystech/web
[IMP] UX. add focus and validation on enter;
parent
f97885a057
commit
043766536d
|
@ -68,6 +68,12 @@ openerp.web_custom_search_quantity = function (instance) {
|
||||||
}).blur(function() {
|
}).blur(function() {
|
||||||
$(this).trigger('change');
|
$(this).trigger('change');
|
||||||
})
|
})
|
||||||
|
.keypress(function(e) {
|
||||||
|
if(e.which == 13) {
|
||||||
|
$(this).trigger('change');
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.focus()
|
||||||
.val(self._limit || '0');
|
.val(self._limit || '0');
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue