Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
3 Trả lời
8710 Lượt xem

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)

Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

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>
Ảnh đại diện
Huỷ bỏ
Tác giả

Ok Mihran Thanks a lot..

Câu trả lời hay nhất

Hi Sudhakar,


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

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

Thank you.

Ảnh đại diện
Huỷ bỏ