[FIX] FormRenderingEngine: allow class propagation to group cells

bzr revid: fme@openerp.com-20130411163238-qy377cdnn9enax34
This commit is contained in:
Fabien Meghazi 2013-04-11 18:32:38 +02:00
parent e2620bb5c7
commit 428fdca40a
1 changed files with 3 additions and 0 deletions

View File

@ -1450,6 +1450,9 @@ instance.web.form.FormRenderingEngine = instance.web.form.FormRenderingEngineInt
$(this).children().each(function() {
var $td = $(this),
$child = $td.children(':first');
if ($child.attr('cell-class')) {
$td.addClass($child.attr('cell-class'));
}
switch ($child[0].tagName.toLowerCase()) {
case 'separator':
break;