参考
JS控制单元格控件是否可用/可见 https://help.fanruan.com/finereport/doc-view-4055.html
=========
或者这和写法,你的就是编辑后事件,js如下
var a=this.getValue();
var location = this.options.location; //获取当前控件的位置
var cr = FR.cellStr2ColumnRow(location);
var col = cr.col; //列号
var ro = cr.row; //行号
var b = contentPane.getWidgetByCell(FR.columnRow2CellStr({col: col+2, row: ro}));
if(a=="true"){
b.setEnable(true);
}else{
b.setEnable(false);
}