2017-07-20 4 views

答えて

6
<xpath expr="//field[@name='partner_id']" position="attributes"> 
     <attribute name="invisible">1</attribute> 
</xpath> 
3

これは、ビューからフィールドを非表示にする最適な方法です。あなたが実装することができ

<xpath expr="//field[@name='partner_id']" position="attributes"> 
    <attribute name="invisible">1</attribute> 
</xpath> 
0

もう一つの方法は、これは、上記の解決策の単なる代替である

<field name="partner_id" position="replace"> 
    <field name="partner_id" invisible="1" /> 
</field> 

です。特定の条件に基づいて、一度にフィールド不可視の読み取り専用などを作るために、より詳細で

0

代替方法。

<xpath expr="//field[@name='partner_id']" position="attributes"> 
    <attribute name="attrs">{'invisible': [('field_name', 'Operator', Value)], 
          'readonly': [('field_name', 'Operator', Value)]} 
    </attribute> 
</xpath> 
関連する問題