假设你要控制的下拉框在当前 下拉框右边一个单元格;
当前下拉框编辑后事件或者编辑结束事件:
var location = this.options.location; //获取当前控件的位置
var k = FR.cellStr2ColumnRow(location);
var co=k.col+1//列号向右偏移一格。
var ro=k.row
var xiala2 =contentPane.getWidgetByCell(FR.columnRow2CellStr({
col: co,
row: ro
}));//获取相对位置中的控件
if(this.getValue()!=''){xiala2.setEnable(false)}
else{xiala2.setEnable(true)}