直接A1单元格控件编辑后事件,js如下
==========================================================
var a = this.getValue();//获取当前控件值
var b=FR.remoteEvaluate('=find("指定字符串",a)');//判断是否包含指定字符串
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(b>0){
name.setEnable(true);
}else{
name.setEnable(false);
}