Hello,
I checked google and this forum but did not find the right answer for odoo9. I have a kanban view that I would like to modify in in a inherited way. But my changes do not show up nowhere and I have no clue why. This is my approach that fails:
<record id="view_kanban_res_partner_inherited" model="ir.ui.view">
<field name="inherit_id" ref="base.res_partner_kanban_view" />
<field name="model">res.partner</field>
<field name="arch" type="xml">
<!-- my changes here do not show up :-( -->
</record>
the change it would like to realize in the partner kanban view is the following: There is an existing div "oe_kanban_details" where I would like to add/modify this bold lines:
<div class="oe_kanban_details">
<strong class="oe_partner_heading"><field name="display_name"/></strong>
<div t-if="!record.xidentification.raw_value" style="margin: 0px; padding:3px 3px 10px 3px; color:#F77171; background-color: #FFF3F3;">
<b>Dates not complete!</b></div>
<div class="oe_kanban_partner_links"/>
</div>