odoo页面隐藏button
-
我在界面添加了三个自定义的button,现在我想要去掉自带的创建和导入按钮,但是我在views里面写上create=“false",但是我添加的自定义按钮就显示不出来了,这是我添加自定义按钮的代码:
<t t-jquery="button.o_list_button_add" t-operation="append"> <button t-if="widget.modelName == 'tmp_dwtables'" class="appbutton o_find_table_object" type="button">查找表对象</button> <button t-if="widget.modelName == 'tmp_dwtables'" class="appbutton o_find_field_object" type="button">查找字段对象</button> <button t-if="widget.modelName == 'tmp_dwtables'" class="appbutton o_find_proc_object" type="button">查找过程对象</button> <button t-if="widget.modelName == 'tmp_dwproc'" class="appbutton o_find_table_object" type="button">查找表对象</button> <button t-if="widget.modelName == 'tmp_dwproc'" class="appbutton o_find_field_object" type="button">查找字段对象</button> <button t-if="widget.modelName == 'tmp_dwproc'" class="appbutton o_find_proc_object" type="button">查找过程对象</button> <button t-if="widget.modelName == 'tmp_dwfeilds'" class="appbutton o_find_table_object" type="button">查找表对象</button> <button t-if="widget.modelName == 'tmp_dwfeilds'" class="appbutton o_find_field_object" type="button">查找字段对象</button> <button t-if="widget.modelName == 'tmp_dwfeilds'" class="appbutton o_find_proc_object" type="button">查找过程对象</button> </t>
我在三个模型里面,每一个模型显示的页面都增加了三个按钮,我要怎样才能把自带的创建和导入按钮隐藏呢,有没有大佬知道的