SQL语句实现下拉框参数联动- FineReport帮助文档 - 全面的报表使用教程和学习资料
var a= this.options.form.getWidgetByName("a");
if(this.getValue()=="11"){
a.setValue("01");
}
else if (this.getValue()=="12"){
a.setValue("02");
}
else {
a.setValue("03");
}

主要是这个参数名称,与你控件的名称,控件获取值默认就是实际值,不是你的显示值的!
