Hello,
I want to ask if it's possible in Odoo 10 to have a regular input field in which the stored value is never visible. I mean, you can insert a new value normally but can't see the one previously saved.
Defining the field as a password is not enough because it's easy to reveal through any browser's debug/inspect mode.
Thanks in advance.
EDIT: Thanks for the answers. In the end I solved it this way:
- A field where I store the value, which isn't visible in the form
- A visible field where I add the value, with the property store=False, and a function onchange that affects the first field.