var a=this.getValue();//获取当前下拉框选中值
var ro = FR.cellStr2ColumnRow(this.options.location).row;//当前行号
var widget = _g().getWidgetByCell(FR.columnRow2CellStr({
col: 2,
row: ro
}));//当前行第3列的控件
var c=FR.remoteEvaluate('=sql("REFINE","SELECT SNM from TB_PRDT where PRD_NO=\''+a+'\'",1,1)');
//JS调用SQL函数,查询获取过滤后的批号属性
c == "T" ? widget.setEnable(true) : widget.setEnable(false);
//如果c是T则显示控件,否则禁用控件 |