页面上有一部分记录行通过行高为0隐藏起来了,写js语句做全选的功能会把这部分也选中,如何只选出行高不为0的记录?var flag = this.getValue(); //获取当前值 var boxes = _g().getWidgetsByName("row_select"); //获取当前页的复选按钮控件数组 if (typeof(boxes) != "undefined") { for (i = 0; i < boxes.length; i++) {
var cr=FR.cellStr2ColumnRow(boxes.options.location); //获取行列号对象 _g().setCellValue(0,cr.col,cr.row,flag); //如果控件大于1个,则遍历赋值 } } else { var cr=FR.cellStr2ColumnRow(boxes.options.location); //获取行列号对象 _g().setCellValue(0,cr.col,cr.row,flag); //如果控件只有1个,则直接赋值 }