Entrada pop -up do Odoo não assumindo o valor do teclado
this.keyboard_handler = function(event){
var key = '';
if (event.type === "keypress") {
if($(".your popup div class").not('.oe_hidden').length){
return;
}
rest of code......
};
and
this.keyboard_keydown_handler = function(event){
if($(".your popup div class").not('.oe_hidden').length){
return;
}
rest of code......
};
Thanks
uzii