[FIX] Fixed editable list view wrong class assignment.

bzr revid: cpa@tinyerp.com-20120511111527-4iz76pe2x815nd9n
This commit is contained in:
Jacques-Etienne Baudoux 2012-05-11 16:45:27 +05:30 committed by cpa-openerp
parent 48f43ae5a4
commit f8fc080545
1 changed files with 1 additions and 1 deletions

View File

@ -202,7 +202,7 @@ openerp.web.list_editable = function (openerp) {
var $new_row = $('<tr>', {
id: _.uniqueId('oe-editable-row-'),
'data-id': record_id,
'class': row ? $(row).attr('class') : '' + ' oe_forms',
'class': (row ? $(row).attr('class') : '') + ' oe_forms',
click: function (e) {e.stopPropagation();}
})
.delegate('button.oe-edit-row-save', 'click', function () {