odoo 页面增加下拉选择按钮
-
我想要在前端页面增加一个下拉选择按钮,来对内容进行过滤显示,我自己写的前端代码:
<t t-jquery="button.o_list_button_add" t-operation="after"> <select t-if="widget.modelName == 'dwapp'"> <option value="bigdate" type='button' class="appbutton o_app_button_bigdata">bigdata</option> <option value="puma" type='button' class="appbutton o_app_button_puma">puma</option> </select> </t>
这是写的JS的代码
odoo.define('doms.add_app_notton', function(require){ 'use strict'; var ListController = require('web.ListController'); ListController.include({ renderButtons: function($node){ var self = this; this._super($node); this.$buttons.find('.o_app_button_bigdata').click(this.proxy('find_big')); this.$buttons.find('.o_app_button_puma').click(this.proxy('find_puma')); }, find_big: function(){ console.log('1111111') }, find_field: function(){ console.log('22222') }, }); });
我不知道这样写对不对,因为以前写过增加button的方法,这个就是按照button的仿照写的,在前端页面上是可以显示出下拉选择按钮的,但是选了之后,console里面没有打印任何东西,有哪位老哥做过类似的,帮忙指点下