我的视图配置如下所示:
<record id="view_rnd_history_form" model="ir.ui.view">
<field name="name">rnd.history.form</field>
<field name="model">rnd.batch.record.history</field>
<field name="arch" type="xml">
<form string="History" version="7.0">
<group>
<field name="br_id" colspan="2"/>
<label for="start_date" string="Date"/>
<div>
<field name="start_date" class="oe_inline"/> -
<field name="end_date" class="oe_inline"/>
</div>
<field name="batch_number" colspan="2"/>
<field name="parameter_id" colspan="2"/>
</group>
<footer>
<button name="show_history" string="_Show" class="oe_highlight"/>
or
<button string="Close" special="cancel"/>
</footer>
<div id="div_history"/>
</form>
</field>
</record>
我的问题是,如何在按钮&#39; show_history&#39;?上点击处理程序我尝试添加widget =&#34; customwidget&#34;像这样:
<button name="show_history" string="_Show" widget="customwidget" class="oe_highlight"/>
但它不起作用。有人能告诉我我想念的是什么吗?谢谢。