Extjs渲染器方法导致Firefox中出现问题

时间:2013-07-31 07:07:53

标签: javascript extjs

我在一个窗口中有网格,窗口通过按钮点击事件打开。它在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;
      }

提前致谢:)

0 个答案:

没有答案