Hello,
I wrote a function in js which, at the end, insert a value in a field of a account.move.line form with this line :
document.getElementsByName("s_configuration")[0].value = clipText;
It works well but when i click on the save button of the form, the value is not saved
If i modify something in the field, its value is saved.
I think that odoo detect manual modification but not js modification or something like that
Do you know how to indicate to odoo that it must save this field ?
For information, i'm a beginner in js and python
Vincent