[FIX] chardomain field: fixed button action

bzr revid: tde@openerp.com-20140415135145-1wks35wufs9b1etq
This commit is contained in:
Thibault Delavallée 2014-04-15 15:51:45 +02:00
parent 02d07ac47e
commit f39fb269a4
1 changed files with 2 additions and 2 deletions

View File

@ -2440,13 +2440,12 @@ instance.web.form.FieldCharDomain = instance.web.form.AbstractField.extend(insta
this._super.apply(this, arguments);
},
start: function() {
var self=this;
var self = this;
this._super.apply(this, arguments);
this.on("change:effective_readonly", this, function () {
this.display_field();
this.render_value();
});
this.$('button.select_records').on('click', self.on_click);
this.display_field();
return this._super();
},
@ -2473,6 +2472,7 @@ instance.web.form.FieldCharDomain = instance.web.form.AbstractField.extend(insta
$('.oe_domain_count', this.$el).text('0 record selected');
$('button span', this.$el).text(' Select records');
};
this.$('.select_records').on('click', self.on_click);
},
on_click: function(ev) {
var self = this;