var a = this.getValue(); //该单元格的值
var location = this.options.location; //获取当前控件的位置
var cr = FR.cellStr2ColumnRow(location);
var col = cr.col; //列号
var ro = cr.row; //行号
var name = contentPane.getWidgetByCell(FR.columnRow2CellStr({col: col+1, row: ro}));
if(a==2||a==1){
name.setEnable(false);
}else{
name.setEnable(true);
}