Overslaan naar inhoud
Menu
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Deze vraag is gerapporteerd
3 Antwoorden
8422 Weergaven

Usually this kinda options available in html <input> field attributes. similarly is it any option for Odoo input fields? (Note: without any changes in browser settings)

Avatar
Annuleer
Beste antwoord

Hi Sudhakar,


There is an autocomplete attribute. See the below code, it is disabling the autocomplete for datepicker fields system wide.


<templates id="template" xml:space="preserve">
    <t t-extend="web.datepicker">
        <t t-jquery=".o_datepicker_input" t-operation="attributes">
            <attribute name="autocomplete">off</attribute>
        </t>
    </t>
</templates>
Avatar
Annuleer
Auteur

Ok Mihran Thanks a lot..

Beste antwoord

Hi Sudhakar,


You can simply use autocomplete = "off" attribute like below.

<field name = "date" autocomplete = "off" />

Thank you.

Avatar
Annuleer