不是加载结束,给A3单元格编辑后事件,js代码
var a=this.getValue();
var location = this.options.location; //获取当前控件的位置
var cr = FR.cellStr2ColumnRow(location);
var col = cr.col; //列号
var ro = cr.row; //行号
var city = contentPane.getWidgetByCell(FR.columnRow2CellStr({col: col+1, row: ro}));
if(a=="ABC"){
city.setEnable(true);
}else{
city.setEnable(false);
}