Skip to Content
Meniu
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Această întrebare a fost marcată
1 Răspunde
7153 Vizualizări

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.

Imagine profil
Abandonează
Cel mai bun răspuns

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.

Imagine profil
Abandonează
Autor

Thanks !!!

Related Posts Răspunsuri Vizualizări Activitate
3
aug. 22
11966
2
dec. 23
18331
2
feb. 19
4176
1
iul. 17
4330
2
iun. 16
6036