文件就不传了。复制编辑用:
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+1, row: ro}));//获取它后面一列控件对象
var d= contentPane.getWidgetByCell(FR.columnRow2CellStr({col: col+3, row: ro}));//
var e= contentPane.getWidgetByCell(FR.columnRow2CellStr({col: col+2, row: ro}));//
var bl=this.getValue();
if (bl=="0"){
c.setEnable(false);//不可用
d.setEnable(false);
}//不可用
else if (bl=="1"){
e.setEnable(false);//不可用
}
else if (bl=="2"){
d.setEnable(false);//不可用
e.setEnable(false);
}
else {
c.setEnable(true);//可用
d.setEnable(true);//可用
e.setEnable(true);//可用
}
你自己对单元格的颜色就加上去就行了