[FIX]fix bug issue.

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

bzr revid: vme@tinyerp.com-20120103084351-wwct754cke2b1n50
This commit is contained in:
Vidhin Mehta (OpenERP) 2012-01-03 14:13:51 +05:30
parent a3eb67a40e
commit 74bce5aa5a
1 changed files with 5 additions and 0 deletions

View File

@ -254,6 +254,11 @@ openerp.web.format_cell = function (row_data, column, value_if_empty, process_mo
attrs = column.modifiers_for(row_data);
}
if (attrs.invisible) { return ''; }
if(column.type === "boolean")
return _.str.sprintf('<input type="checkbox" %s disabled="disabled" />',
row_data[column.id].value ? 'checked="checked"':'');
if (column.tag === 'button') {
return _.template('<button type="button" title="<%-title%>" <%=additional_attributes%> >' +
'<img src="<%-prefix%>/web/static/src/img/icons/<%-icon%>.png" alt="<%-alt%>"/>' +