我在一个窗口中有网格,窗口通过按钮点击事件打开。它在firefox和IE中运行良好。我刚刚在列中添加了渲染器,现在它没有在Firefox中打开但在IE中没有问题。
{
header : 'Notes Description',
dataIndex : 'snotes_IsMandatory',
width : 85,
sortable : true,
renderer : notesDescription
}
和方法是,
function notesDescription(val, b, c, d, e, f){
var result;
if(val == 0)
result = "false";
else
result = "true";
return result;
}
提前致谢:)