C3不用条件属性直接加控件且不为空
I3 编辑后事件
var location = this.options.location; //获取当前控件的位置得到一个单元格的地址
var cr = FR.cellStr2ColumnRow(location); //把单元格地址传入后就得到一个控件对象了
var col = cr.col; //获取控件对象的列号
var ro = cr.row; //获取控件对象的行号
var c = contentPane.getWidgetByCell(FR.columnRow2CellStr({
col: col -6,
row: ro
}));
var b = this.getValue();
if (b == "否") {
c.setVisible(true); //可用
} //不可用
else {
c.setVisible(false);
}
---------
WorkBook1.rar