コンテンツへスキップ
メニュー
この質問にフラグが付けられました
1 返信
7145 ビュー

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.

アバター
破棄
最善の回答

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.

アバター
破棄
著作者

Thanks !!!

関連投稿 返信 ビュー 活動
3
8月 22
11964
2
12月 23
18330
2
2月 19
4174
1
7月 17
4328
2
6月 16
6033