コンテンツへスキップ
メニュー
この質問にフラグが付けられました
1 返信
5012 ビュー

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?

アバター
破棄
最善の回答

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.

アバター
破棄

Thank you

関連投稿 返信 ビュー 活動
0
5月 17
3867
1
4月 25
3409
1
3月 25
1200
0
3月 24
1275
0
10月 22
2431