Hi i have an existing search view,i have inherited it and added my own filter on it,,,,its working fine but i want to remove the previous filter from the list too,,how can i do that??
here is my code
<record model="ir.ui.view" id="society_search">
<field name="name">real_estate society_search</field>
<field name="model">society</field>
<field name="inherit_id" ref="real_estate.society_search"/>
<field name="arch" type="xml">
<search>
<group expand="0" string="Group By">
<filter name='Building' string="Building" domain="[]" context="{'group_by':'society_id'}"/>
</group>
</search>
</field>
</record>