试试按钮的点击事件:
var a = this.getValue();
var location = this.options.location; //获取当前控件的位置
var cr = FR.cellStr2ColumnRow(location);//根据单元格编号获取行列索引
var col = cr.col; //列号
var ro = cr.row; //行号
if(a=="校验"){
contentPane.setCellValue(0, col-1, ro, "已通过");//将同一行的前一列单元格值改成 已通过
contentPane.setCellValue(0, col, ro, "未校验");//将点击时控件所在单元格值改成 未校验
}
else{
contentPane.setCellValue(0, col-1, ro, "未通过");
contentPane.setCellValue(0, col, ro, "校验");
}