Skip to Content
Menu
This question has been flagged
1 Odpoveď
3622 Zobrazenia

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>


Avatar
Zrušiť
Autor Best Answer

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

Avatar
Zrušiť
Related Posts Replies Zobrazenia Aktivita
1
máj 23
7132
0
dec 17
3964
1
júl 16
4003
1
jún 24
1201
1
jún 23
2934