several fixes

This commit is contained in:
lreficent
2017-09-07 18:00:58 +02:00
committed by Artem Kostyuk
parent d991ed117b
commit 3ba0eaceca
12 changed files with 52452 additions and 236 deletions

View File

@@ -10,10 +10,12 @@ odoo.define('web_widget_bokeh_chart', function (require) {
var BokehChartWidget = form_common.AbstractField.extend({
render_value: function() {
var self = this;
var val = this.get('value');
this.$el.html(val);
}
});
core.form_widget_registry.add('bokeh_chart', BokehChartWidget);
return {
BokehChartWidget: BokehChartWidget
};
});