1

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

提前致谢 :)

4

0 回答 0