I would like to set the personal information tab as the default one instead of Contacs & Adresses.
I found on the forum that Autofocus should do the trick... But it seems not working. (Odoo Community V10 project)
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<!-- Declared the same in every module that may need it -->
<record id="view_partner_form" model="ir.ui.view">
<field name="name">view_partner_form</field>
<field name="model">res.partner</field>
<field name="inherit_id" ref="partner_contact_personal_information_page.personal_information"/>
<field name="arch" type="xml">
<data>
<xpath expr="//page[1]" position="attributes">
<attribute name="autofocus">False</attribute>
</xpath>
<xpath expr="//page[@name='personal_information_page']" position="attributes">
<attribute name="autofocus">autofocus</attribute>
</xpath>
</data>
</field>
</record>
</odoo>