var isAllChecked = true;
//获取当前值var boxes = _g().getWidgetsByName("box");
//获取当前页的复选按钮控件数组
if (typeof(boxes[0]) != "undefined") {
for (i = 0; i < boxes.length; i++) {
//获取行列号对象
var cr=FR.cellStr2ColumnRow(boxes[i].options.location);
isAllChecked=boxes[i].setValue();
_g.setCellValue(0,26,cr.row,isAllChecked);//aa列赋值
}
} else {
var cr=FR.cellStr2ColumnRow(boxes.options.location);
isAllChecked=boxes.setValue();
_g.setCellValue(0,26,cr.row,isAllChecked);//aa列赋值
}
_g.setCellValue(0,0,1,isAllChecked);