为光滑网格编写自定义格式化程序

时间:2012-05-10 04:39:45

标签: javascript slickgrid

编写自定义单元格格式器时

 function PercentCompleteFormatter(row, cell, value, columnDef, dataContext)

这是我们必须遵循的基本定义。我在光滑网格中得到关于dataContext参数的解释。它实际上代表什么。

确切的代码是

function PercentCompleteFormatter(row, cell, value, columnDef, dataContext) {
if (value == null || value === "") {
  return "-";
} else if (value < 50) {
  return "<span style='color:red;font-weight:bold;'>" + value + "%</span>";
} else {
  return "<span style='color:green'>" + value + "%</span>";
}
}

我只想要上面代码中的dataContext代表

2 个答案:

答案 0 :(得分:5)

“dataContext”是要呈现的行的单元格绑定的数据项。

答案 1 :(得分:0)

为了使它更简单,

我写了这个函数,我定义了我的slickgrid,然后将我的函数传递给格式化程序

    function roundOffValuesFormatter (row, cell, value, columnDef, dataContext) {
        if(dataContext[cellID] || dataContext[cellID]) {
         return Math.round(value*100)/100;  
        } 
    }

现在调用此格式化程序,

{id:'cellID', field:'cellID', name:'Name', width:90, editor:Slick.Editors.Text, formatter: roundOffValuesFormatter}

现在,根据您的要求进行自定义。