カスタム セル フォーマッタの作成中
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 が表すものが欲しいだけです