直接控件编辑后事件,js如下
var a = this.getValue();
var location = this.options.location; //获取当前控件的位置
var cr = FR.cellStr2ColumnRow(location);
var col = cr.col; //列号
var ro = cr.row; //行号
var name1 = contentPane.getWidgetByCell(FR.columnRow2CellStr({col: col+1, row: ro}));
var name2 = contentPane.getWidgetByCell(FR.columnRow2CellStr({col: col+2, row: ro}));
if(a=="是"){
name1.setEnable(false);
name2.setEnable(false);
}else{
name1.setEnable(true);
name2.setEnable(true);
}