mirror of
https://github.com/OCA/web.git
synced 2025-02-22 13:21:25 +02:00
[IMP] support changing readonly state
This commit is contained in:
committed by
Simone Orsi
parent
3b75298142
commit
3abe635c64
@@ -317,9 +317,22 @@ openerp.web_widget_x2many_2d_matrix = function(instance)
|
||||
});
|
||||
this.compute_totals();
|
||||
this.setup_many2one_axes();
|
||||
this.on("change:effective_readonly",
|
||||
this, this.proxy(this.effective_readonly_change));
|
||||
this.effective_readonly_change();
|
||||
return this._super.apply(this, arguments);
|
||||
},
|
||||
|
||||
effective_readonly_change: function()
|
||||
{
|
||||
this.$el
|
||||
.find('tbody td.oe_list_field_cell span.oe_form_field>input')
|
||||
.toggle(!this.get('effective_readonly'));
|
||||
this.$el
|
||||
.find('tbody td.oe_list_field_cell span.oe_form_field>span')
|
||||
.toggle(this.get('effective_readonly'));
|
||||
},
|
||||
|
||||
// deactivate view related functions
|
||||
load_views: function() {},
|
||||
reload_current_view: function() {},
|
||||
|
||||
Reference in New Issue
Block a user