跳至内容
菜单
此问题已终结
1 回复
3608 查看

how create custom widget for field with old values? its created it with empty template:

js:

odoo.define('status_widget', function (require) { "use strict";

 var form_common = require('web.form_common'); 

 var core = require('web.core');
var statusWidget = form_common.AbstractField.extend({ 

 init: function (view, code) { 

 this._super(view, code); 

 }, 

 render_value: function() {
} });


 core.form_widget_registry.add('status_widget', statusWidget);});


xml:

<field name="user_id" position="after"> 

 <field name="test_selection" widget="status_widget"/> 

 </field>


形象
丢弃
编写者 最佳答案

I found file form_widgets.js in web module and extend classes from it

形象
丢弃
相关帖文 回复 查看 活动
1
5月 23
7123
0
12月 17
3961
1
7月 16
4002
1
6月 24
1189
1
6月 23
2923