This question has been flagged
2 Replies
3654 Views

I know I can hide a field with:

<field name="name" position="attributes">   
    <attribute name="invisible">True</attribute> 
</field>

But if a want do hide a whole group how do I do it? For example in res.partner or base.view_partner_form I want to remove/hide the whole address group, how do I do it without hiding it field for field?

Avatar
Discard
Best Answer

using xpath and position="replace"

Avatar
Discard
Best Answer

Hi,

Try this

        <group name="group name">    
            <attribute name="invisible">True</attribute>     

        </group>
Avatar
Discard