[fix] use a more solid selector to get $element

bzr revid: valentin.lab@kalysto.org-20111004072424-uwx50578hhafe2xm
This commit is contained in:
Valentin Lab 2011-10-04 09:24:24 +02:00
parent e80894b775
commit 8c1e052007
1 changed files with 4 additions and 1 deletions

View File

@ -688,7 +688,10 @@ openerp.web.form.Widget = openerp.web.Widget.extend(/** @lends openerp.web.form.
this.width = this.node.attrs.width;
},
start: function() {
this.$element = this.view.$element.find('.' + this.element_class);
// avoiding find('.' + this.element_class) form because it doesn't work
// if class contains some dots.
this.$element = this.view.$element
.find('[class~="' + this.element_class + '"]');
},
process_modifiers: function() {
var compute_domain = openerp.web.form.compute_domain;