[FIX] IE9: traceback in Reporting when changing type of view

lp bug: https://launchpad.net/bugs/1091715 fixed

bzr revid: fme@openerp.com-20130221221314-0n1q4k2c373yzrc3
This commit is contained in:
Fabien Meghazi 2013-02-21 23:13:14 +01:00
parent 73b99d0932
commit 864543d0b8
2 changed files with 3 additions and 3 deletions

View File

@ -303,9 +303,9 @@ instance.web.form.DashBoard = instance.web.form.FormWidget.extend({
instance.web.form.DashBoardLegacy = instance.web.form.DashBoard.extend({
renderElement: function() {
if (this.node.tag == 'hpaned') {
this.node.attrs.style = '2-1';
this.node.attrs.layout = '2-1';
} else if (this.node.tag == 'vpaned') {
this.node.attrs.style = '1';
this.node.attrs.layout = '1';
}
this.node.tag = 'board';
_.each(this.node.children, function(child) {

View File

@ -10,7 +10,7 @@
<span> Change Layout </span>
</button>
</div>
<table t-att-data-layout="node.attrs.style" t-attf-class="oe_dashboard oe_dashboard_layout_#{node.attrs.style}" cellspacing="0" cellpadding="0" border="0">
<table t-att-data-layout="node.attrs.layout" t-attf-class="oe_dashboard oe_dashboard_layout_#{node.attrs.layout}" cellspacing="0" cellpadding="0" border="0">
<tr>
<td t-foreach="node.children" t-as="column" t-if="column.tag == 'column'"
t-att-id="view.element_id + '_column_' + column_index" t-attf-class="oe_dashboard_column index_#{column_index}">