Skip ke Konten
Menu
Pertanyaan ini telah diberikan tanda
1 Balas
4980 Tampilan

I have following Odoo form view:

<group class="o_group_col_4">
 <field name="start_time"/>
 <field name="finish_time"/>
 <field name="readonly_field1" attrs="{'readonly':True}"/>
</group>
<group class="o_group_col_4">
 <field name="readonly_field2"  attrs="{'readonly':True}"/>
 <field name="date"/>
</group>

In the form view when I press TAB key from start_time, it goes to end_time but form end_time it does not go to date field on TAB.

Can anyone help how can we specify tabindex in odoo form view, so that the TAB navigation becomes start_time -> end_time -> date?

Avatar
Buang
Jawaban Terbai

Hello,
you can try this. it will definitely help you. :
<group col="4">

<field name="start_time"/>

<field name="finish_time"/>

<field name="date"/>

<field name="readonly_field1" attrs="{'readonly':True}"/>

<field name="readonly_field2"  attrs="{'readonly':True}"/>

</group>

Thank You.

Avatar
Buang

Thank you

Post Terkait Replies Tampilan Aktivitas
0
Mei 17
3851
1
Apr 25
3375
1
Mar 25
1121
0
Mar 24
1262
0
Okt 22
2425