Skip to Content
Menu
This question has been flagged
1 Reply
6280 Views

Hi,

I have a inherit view with a new button (and class) but it's doesn't work...

i don't know for why, anyone know why?

This is the view code, I'm doing something wrong ?, there any alternative?.

<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<record model="ir.ui.view" id="ocl_hr_expense">
<field name="name">hr.expense.line.tree</field>
<field name="model">hr.expense.expense</field>
<field name="inherit_id" ref="hr_expense.view_expenses_form" />
<field name="arch" type="xml">
<xpath expr="/form/sheet/notebook/page[@string='Description']/field[@name='line_ids']/tree[@string='Expense Lines']/field[@name='total_amount']"
position="after">
<!-- <div class="oe_edit_only oe_button oe_form_button oe_link"> </div>-->
<button name="open_tickets_form" icon="gtk-add" type="object" class="oe_edit_only oe_button oe_form_button oe_link" />
<button name="view_tickets_kanban" icon="terp-folder-orange" type="object" context="{'line_id': active_id}" />
</xpath>
</field>
</record>
</data>
</openerp>


Thanks.

Avatar
Discard
Best Answer

Here you have tried to add button to a One2many field, and the css class, that you are trying to apply does not apply in One2many field. The css class applies on the buttons which are placed on the form view along with other fields but not inside One2many field.

Avatar
Discard
Author

Thanks !!!

Related Posts Replies Views Activity
3
Aug 22
10499
2
Dec 23
16728
2
Feb 19
2675
1
Jul 17
3272
2
Jun 16
4991