Hi, I have a text field.
my_field = fields.Text()
I want to disable copying and paste(ctrl+c, ctrl+v) from intput with java script or python. How i can do it, thanks.
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
Hi, I have a text field.
my_field = fields.Text()
I want to disable copying and paste(ctrl+c, ctrl+v) from intput with java script or python. How i can do it, thanks.
Hi Pavel,
This thing you can do with the jquery event handlers cut, copy & paste.
Code:
$ (document) .ready (function () {
$ ('# txtInput'). on ("cut copy paste", function (e) {
e.preventDefault ();
});
});
Thanks ....
For more information Contact us:- https: //kanakinfosystems.com/odoo-development-services
Crie uma conta hoje mesmo para aproveitar os recursos exclusivos e interagir com nossa incrível comunidade!
Inscreva-sePublicações relacionadas | Respostas | Visualizações | Atividade | |
---|---|---|---|---|
|
0
jan. 21
|
44 | ||
|
2
dez. 23
|
12724 | ||
|
3
jul. 22
|
23100 | ||
|
2
jun. 21
|
18548 | ||
|
0
set. 20
|
3718 |