我需要在openerp中隐藏页面中的discard按钮。有可能吗?
答案 0 :(得分:0)
您必须继承表单按钮模板并隐藏表单中的按钮。
<templates id="template" xml:space="preserve">
<t t-extend="FormView.buttons">
<t t-jquery="div[class=oe_form_button_cancel]" t-operation="replace">
<a href="#" class="oe_bold oe_form_invisible oe_form_button_cancel" accesskey="D">Discard</a>
</t>
</t>
</templates>
希望这个帮助
此致
答案 1 :(得分:0)
这似乎毫无意义,因为你无法使用浏览器上的后退按钮(或只是关闭浏览器)来阻止它们。
道歉,如果这看起来很愚蠢,但你的意思是你想阻止他们删除这个对象吗?