Перейти к содержимому
Меню
Чтобы взаимодействовать с сообществом, необходимо зарегистрироваться.
Этот вопрос был отмечен
3 Ответы
14849 Представления

Hello,


I have one wizard in which 9 fields are there. Out of 9 fields, 4 fields are read only.

When wizard is open, i used TAB key for fill the value in fields.


When i used TAB key, focus also gone to read only fields. But i want to remove it. When i fill last fields, the focus directly gone to button using TAB.


Also I want to focus on specified fields on TAB.

Wizard Code :-

<div class="col-md-4">

    <group>

        <field name="lot_id" options="{'no_create': True}" required="1" attrs="{'readonly' : [('have_product', '=', True)], 'required' : [('have_product', '=', False)]}"/>

        <field name="type_product_id" readonly="1" tabindex="-1"/>

        <field name="shape_product_id" readonly="1" tabindex="-1"/>

        <field name="color_product_id" readonly="1" tabindex="-1"/>

        <field name="size_product_id" readonly="1" tabindex="-1"/>

        <field name="clarity_product_id" readonly="1" tabindex="-1"/>

        <field name="have_product" invisible="1"/>

    </group>

</div>


Thanks in advance.

Regards,

Аватар
Отменить
Лучший ответ

Hello,

The readonly fields is not tabindexed by default [Which version you're using ?], moreover you can set the attribute tabindex="-1" remove the tab index focus and you can use the same attribute with different numbers  to order your fields by tab indexing ...


Hope this could help ...

Аватар
Отменить
Автор

Hello Ahmed, I am using version 9.0 of odoo. I used tabindex="-1" in readonly field but still facing same issue.

Лучший ответ

Hello 

I have tested below code for version 8.0 and 9.0 its skip tab focus.

 <field name="phone" readonly='1' tabindex="-1"/>

<field name="mobile" tabindex="-1"/>

<field name="fax" readonly='1' tabindex="-1"/>

Аватар
Отменить
Автор

Thanks sir. But i am facing same issue using tabindex="-1". See my updated question in which i have added code for wizard.

Hello Jigesh,

I tested tabinex=-1 with many2one field its not work with read only field with many2one

Автор

Thank you so much sir. But I want it with readonly many2one field. Is there any other idea ?

Related Posts Ответы Просмотры Активность
3
апр. 16
6535
1
окт. 24
3056
9
июл. 21
63127
8
нояб. 19
7813
2
авг. 17
4305