[IMP] put back commit_value

bzr revid: nicolas.vanhoren@openerp.com-20121105111635-5aygxpvlfuxqozu5
This commit is contained in:
niv-openerp 2012-11-05 12:16:35 +01:00
parent 1f25f1dee1
commit 8f341d3555
1 changed files with 9 additions and 1 deletions

View File

@ -2010,6 +2010,11 @@ instance.web.form.FieldInterface = {
* Called when the translate button is clicked.
*/
on_translate: function() {},
/**
This method is called by the form view before reading on_change values and before saving. It tells
the field to save its value before reading it using get_value(). Must return a deferred.
*/
commit_value: function() {},
};
/**
@ -2153,7 +2158,10 @@ instance.web.form.AbstractField = instance.web.form.FormWidget.extend(instance.w
}
this.$el.attr('style', style);
this.$el.css('minHeight', height);
}
},
commit_value: function() {
return $.when();
},
});
/**