//编辑事件
var a = this.getValue();//当前控件的值
var location = this.options.location; //获取当前控件的位置
//控件接口:https://help.fanruan.com/finereport10.0/doc-view-4007.html
var cr = FR.cellStr2ColumnRow(location);
//获取单元格控件所在的单元格编号 根据单元格编号获取行列索引
var col = cr.col; //列号
var ro = cr.row; //行号
if (a) {
$("#r-" + ro + "-0").find("td").css("color", "red");
} else {
$("#r-" + ro + "-0").find("td").css("color", "black");
} |